diff --git a/examples/pybullet/pybullet.c b/examples/pybullet/pybullet.c index d9c5beac7..1f8d006f9 100644 --- a/examples/pybullet/pybullet.c +++ b/examples/pybullet/pybullet.c @@ -11958,8 +11958,8 @@ static PyObject* pybullet_calculateJacobian(PyObject* self, PyObject* args, PyOb if (dofCount) { int byteSizeDofCount = sizeof(double) * dofCount; - double* linearJacobian = (double*)malloc(3 * byteSizeDofCount); - double* angularJacobian = (double*)malloc(3 * byteSizeDofCount); + linearJacobian = (double*)malloc(3 * byteSizeDofCount); + angularJacobian = (double*)malloc(3 * byteSizeDofCount); b3GetStatusJacobian(statusHandle, NULL, linearJacobian, diff --git a/setup.py b/setup.py index 3862c12b9..9f3730240 100644 --- a/setup.py +++ b/setup.py @@ -501,7 +501,7 @@ if 'BT_USE_EGL' in EGL_CXX_FLAGS: setup( name='pybullet', - version='2.8.6', + version='2.8.7', description= 'Official Python Interface for the Bullet Physics SDK specialized for Robotics Simulation and Reinforcement Learning', long_description=