Merge pull request #1664 from erwincoumans/master

PyBullet: fix some memory leaks
This commit is contained in:
erwincoumans
2018-05-02 13:54:07 -07:00
committed by GitHub
3 changed files with 9 additions and 2 deletions

View File

@@ -3551,6 +3551,7 @@ static PyObject* pybullet_getJointStates(PyObject* self, PyObject* args, PyObjec
return NULL;
}
}
Py_DECREF(jointIndicesSeq);
return resultListJointState;
}
}