##// END OF EJS Templates
parsers: fix uninitialize variable warning...
David Soria Parra -
r22540:9a860ac8 default
parent child Browse files
Show More
@@ -854,7 +854,7 b' static PyObject *index_headrevs(indexObj'
854 {
854 {
855 Py_ssize_t i, len, addlen;
855 Py_ssize_t i, len, addlen;
856 char *nothead = NULL;
856 char *nothead = NULL;
857 PyObject *heads;
857 PyObject *heads = NULL;
858 PyObject *filter = NULL;
858 PyObject *filter = NULL;
859 PyObject *filteredrevs = Py_None;
859 PyObject *filteredrevs = Py_None;
860
860
General Comments 0
You need to be logged in to leave comments. Login now