Coverity issues:
129202: replace dynamic_cast with static_cast 129421, 129422: fix Py_Return macro 128928: Unchecked return value 129488, 129490: uninitialized scalar variable 129567, 129661: uninitialized scalar field 129665: uninitialized pointer field
This commit is contained in:
@@ -910,7 +910,7 @@ PyObject* MeshPy::removeNonManifolds(PyObject *args)
|
||||
if (!PyArg_ParseTuple(args, ""))
|
||||
return NULL;
|
||||
getMeshObjectPtr()->removeNonManifolds();
|
||||
Py_Return
|
||||
Py_Return;
|
||||
}
|
||||
|
||||
PyObject* MeshPy::removeNonManifoldPoints(PyObject *args)
|
||||
@@ -918,7 +918,7 @@ PyObject* MeshPy::removeNonManifoldPoints(PyObject *args)
|
||||
if (!PyArg_ParseTuple(args, ""))
|
||||
return NULL;
|
||||
getMeshObjectPtr()->removeNonManifoldPoints();
|
||||
Py_Return
|
||||
Py_Return;
|
||||
}
|
||||
|
||||
PyObject* MeshPy::hasSelfIntersections(PyObject *args)
|
||||
|
||||
Reference in New Issue
Block a user