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

Commit c0870640 authored by Ytai Ben-tsvi's avatar Ytai Ben-tsvi Committed by Automerger Merge Worker
Browse files

Merge "Prevent double-closing of native handle in HidlMemory" into sc-dev am: c53f7a2d

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/14719253

Change-Id: I931e2ef20cfc2a011cb4f885107e9108ef761fb1
parents bddcdebd c53f7a2d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -79,6 +79,7 @@ public class HidlMemory implements Closeable {
    public void close() throws IOException {
        if (mHandle != null) {
            mHandle.close();
            mHandle = null;
        }
    }