parsers: fix uninitialize variable warning

The heads pointer is not initialized correctly if filter is false, causing
both clang and gcc to issue a warning. Correctly initialize heads to NULL.
This commit is contained in:
David Soria Parra 2014-09-24 13:16:20 -07:00
parent a7bd255d53
commit 4a8632512f

View File

@ -854,7 +854,7 @@ static PyObject *index_headrevs(indexObject *self, PyObject *args)
{
Py_ssize_t i, len, addlen;
char *nothead = NULL;
PyObject *heads;
PyObject *heads = NULL;
PyObject *filter = NULL;
PyObject *filteredrevs = Py_None;