Browse Source

unix/modjni: call_method: Delete done local references in loop.

To avoid local ref table overflow.
pull/1470/merge
Paul Sokolovsky 9 years ago
parent
commit
77020281ae
  1. 4
      unix/modjni.c

4
unix/modjni.c

@ -378,12 +378,16 @@ STATIC mp_obj_t call_method(jobject obj, const char *name, jarray methods, bool
}
JJ(ReleaseStringUTFChars, name_o, decl);
JJ(DeleteLocalRef, name_o);
JJ(DeleteLocalRef, meth);
return ret;
}
}
next_method:
JJ(ReleaseStringUTFChars, name_o, decl);
JJ(DeleteLocalRef, name_o);
JJ(DeleteLocalRef, meth);
}
nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_TypeError, "method not found"));

Loading…
Cancel
Save