Always decref the new string. Don't set err.

This commit is contained in:
richo 2013-01-05 02:20:40 +11:00
parent 63d319895c
commit badb7f435d

@ -168,12 +168,8 @@ Repository_build_as_iter(git_oid *oid, PyObject *accum)
PyObject *oid_str = git_oid_to_py_str(oid);
err = PyList_Append(accum, oid_str);
if (err < 0) {
Error_set(err);
return -1;
}
Py_XDECREF(oid_str);
return 0;
Py_DECREF(oid_str);
return err;
}
PyObject *