diff --git a/examples/pybullet/pybullet.c b/examples/pybullet/pybullet.c index af6f463b0..4032fcb69 100644 --- a/examples/pybullet/pybullet.c +++ b/examples/pybullet/pybullet.c @@ -2902,7 +2902,7 @@ static PyObject* pybullet_getJointInfo(PyObject* self, PyObject* args, PyObject* // info.m_jointFriction); PyTuple_SetItem(pyListJointInfo, 0, PyInt_FromLong(info.m_jointIndex)); - if (info.m_jointName) + if (info.m_jointName[0]) { PyTuple_SetItem(pyListJointInfo, 1, PyString_FromString(info.m_jointName)); @@ -2928,7 +2928,7 @@ static PyObject* pybullet_getJointInfo(PyObject* self, PyObject* args, PyObject* PyFloat_FromDouble(info.m_jointMaxForce)); PyTuple_SetItem(pyListJointInfo, 11, PyFloat_FromDouble(info.m_jointMaxVelocity)); - if (info.m_linkName) + if (info.m_linkName[0]) { PyTuple_SetItem(pyListJointInfo, 12,