New submission from Alex CHEN:
In file _elementtree.c
our static code scanner has reported this case, I think there is a bit similar
to http://bugs.python.org/issue29874 (returns NULL when NoMemory)
static PyObject*
subelement(PyObject* self, PyObject* args, PyObject* kw)
{
PyObject* elem
Changes by Alex CHEN :
--
type: -> crash
___
Python tracker
<http://bugs.python.org/issue29874>
___
___
Python-bugs-list mailing list
Unsubscrib
New submission from Alex CHEN:
In file selectmodule.c
our static code scanner has reported the following case, function set2list is
liable to return NULL (if PyTuple_New failed), would any chance the NULL
pointer be dereferenced (Py_DECREF(fdlist) after set2list) or it would just
raise
New submission from Alex CHEN:
In file _elementtree.c
our static code scanner has reported this case, but I don't sure that could be
any problem, may you have a look?
static PyObject*
element_getattr(ElementObject* self, char* name)
{
PyObject* res;
/* handle common attri
New submission from Alex CHEN:
Hi,
Our tool reported a position that doesn't check for returned value (from a
function that might returns null). might need a look that is there any problem
or I am missing something.
in function PyUnknownEncodingHandler of file pyexpat.c,