mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-22 13:48:09 +00:00
Fixed Android local ref table overflow due to enums
This commit is contained in:
parent
a26324b95f
commit
918b217f99
1 changed files with 5 additions and 0 deletions
|
|
@ -333,6 +333,11 @@ static {{return}} {{callbackName}}({{params}}) {
|
|||
env->DeleteLocalRef(j_{{objectName}});
|
||||
}
|
||||
{{/jobjects}}
|
||||
{{#jenums}}
|
||||
if (j_{{enumName}}) {
|
||||
env->DeleteLocalRef(j_{{enumName}});
|
||||
}
|
||||
{{/jenums}}
|
||||
{{#jstrings}}
|
||||
if (j_{{stringName}}) {
|
||||
env->DeleteLocalRef(j_{{stringName}});
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue