-
Notifications
You must be signed in to change notification settings - Fork 16
Closed
Description
This statement (as far as I understand the JNI) creates a local reference:
Line 1486 in cad8664
| jobject values = call(env, headerMap, "get", "(Ljava/lang/Object;)Ljava/lang/Object;", name); |
but it is not deleted, like the other local references, here:
Lines 1499 to 1500 in cad8664
| (*env)->DeleteLocalRef(env, name); | |
| (*env)->DeleteLocalRef(env, value); |
The fix is to add the following statement at line 1501:
(*env)->DeleteLocalRef(env, values);
Metadata
Metadata
Assignees
Labels
No labels