##// END OF EJS Templates
reachableroots: fix memleak of integer objects at includepath loop...
Yuya Nishihara -
r26033:9e7d8059 default
parent child Browse files
Show More
@@ -1232,6 +1232,7 b' static PyObject *reachableroots(indexObj'
1232 1232 if (val == NULL)
1233 1233 goto bail;
1234 1234 PySet_Add(reachable, val);
1235 Py_DECREF(val);
1235 1236 }
1236 1237 Py_DECREF(p);
1237 1238 }
General Comments 0
You need to be logged in to leave comments. Login now