Skip to content

libvlcjni: free JNI references

Louis Régnier requested to merge louregni/vlc-android:libvlcjni_leak into master

Inside JNI_OnLoad function, macro GET_CLASS leak a JNI LocalRef when the macro get a GlobalRef and assign it, the LocalRef is lost.

JNI_OnLoad acquire many GlobalRef, but they are not all released in JNI_UnLoad.

Edited by Louis Régnier

Merge request reports