Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 96f4f9e2 authored by Steven Moreland's avatar Steven Moreland Committed by android-build-merger
Browse files

Merge "HwBlob: s/malloc/calloc/" into oc-dev am: 123ffb62

am: f489aed3

Change-Id: Iea1bfc306161b065a3699fd780da28296f46dc96
parents e2d4ed92 f489aed3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -84,7 +84,7 @@ JHwBlob::JHwBlob(JNIEnv *env, jobject thiz, size_t size)
      mOwnsBuffer(true),
      mHandle(0) {
    if (size > 0) {
        mBuffer = malloc(size);
        mBuffer = calloc(size, 1);
    }
}