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

Commit a13430af authored by Martijn Coenen's avatar Martijn Coenen Committed by android-build-merger
Browse files

Merge "Fix gNumProxies double increment." am: 18f8500e am: 1b4f5374

am: 445f60fc

Change-Id: I90e203f48905b9a5e38d2be4a36b2bcb46097ac4
parents 5bc67523 445f60fc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -673,7 +673,7 @@ jobject javaObjectForIBinder(JNIEnv* env, const sp<IBinder>& val)
        nativeData->mObject = val;
        gNativeDataCache = nullptr;
        ++gNumProxies;
        if (++gNumProxies >= gProxiesWarned + PROXY_WARN_INTERVAL) {
        if (gNumProxies >= gProxiesWarned + PROXY_WARN_INTERVAL) {
            ALOGW("Unexpectedly many live BinderProxies: %d\n", gNumProxies);
            gProxiesWarned = gNumProxies;
        }