##// END OF EJS Templates
osutil: don't leak on statfiles error...
Bryan O'Sullivan -
r26982:fa6685ea default
parent child Browse files
Show More
@@ -615,7 +615,7 b' static PyObject *statfiles(PyObject *sel'
615
615
616 pypath = PySequence_GetItem(names, i);
616 pypath = PySequence_GetItem(names, i);
617 if (!pypath)
617 if (!pypath)
618 return NULL;
618 goto bail;
619 path = PyString_AsString(pypath);
619 path = PyString_AsString(pypath);
620 if (path == NULL) {
620 if (path == NULL) {
621 Py_DECREF(pypath);
621 Py_DECREF(pypath);
General Comments 0
You need to be logged in to leave comments. Login now