##// END OF EJS Templates
dirstate: fix leak of entry object in dirstate_item_from_v1_data()
Yuya Nishihara -
r48840:448aff4e default
parent child Browse files
Show More
@@ -352,6 +352,7 b' dirstate_item_from_v1_data(char state, i'
352 PyErr_Format(PyExc_RuntimeError,
352 PyErr_Format(PyExc_RuntimeError,
353 "unknown state: `%c` (%d, %d, %d)", state, mode,
353 "unknown state: `%c` (%d, %d, %d)", state, mode,
354 size, mtime, NULL);
354 size, mtime, NULL);
355 Py_DECREF(t);
355 return NULL;
356 return NULL;
356 }
357 }
357
358
General Comments 0
You need to be logged in to leave comments. Login now