Issue #1253 - re-compiled the shared libraries with the -O2 flag
Change-Id: I7e15eb5285f485fab4cdbf35e13dba91417090e1 Former-commit-id: daa7b076a331dab3d7139a16a24a4880becd08b1
This commit is contained in:
parent
5ff0a48870
commit
27b8ed0057
4 changed files with 3 additions and 0 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -494,12 +494,14 @@ PyObject* pyjmethod_call_internal(PyJmethod_Object *self,
|
|||
param = PyTuple_GetItem(args, pos); /* borrowed */
|
||||
if(PyErr_Occurred()) { /* borrowed */
|
||||
PyMem_Free(jargs);
|
||||
PyMem_Free(jrelease);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
pclazz = (*env)->GetObjectClass(env, paramType);
|
||||
if(process_java_exception(env) || !pclazz) {
|
||||
PyMem_Free(jargs);
|
||||
PyMem_Free(jrelease);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
@ -963,6 +965,7 @@ PyObject* pyjmethod_call_internal(PyJmethod_Object *self,
|
|||
}
|
||||
|
||||
PyMem_Free(jargs);
|
||||
PyMem_Free(jrelease);
|
||||
|
||||
if(PyErr_Occurred())
|
||||
return NULL;
|
||||
|
|
Loading…
Add table
Reference in a new issue