Do not pass 0 to PyObject_IsTrue

This commit is contained in:
wmayer
2012-12-30 23:16:56 +01:00
parent 15274f1b80
commit 0ebffa930a
7 changed files with 41 additions and 41 deletions

View File

@@ -464,7 +464,7 @@ Py::Object View3DInventorPy::viewRotateRight(const Py::Tuple& args)
Py::Object View3DInventorPy::setCameraOrientation(const Py::Tuple& args)
{
PyObject* o;
PyObject* m=0;
PyObject* m=Py_False;
if (!PyArg_ParseTuple(args.ptr(), "O!|O!", &PyTuple_Type, &o, &PyBool_Type, &m))
throw Py::Exception();