parser__pickler(): Use Py_DECREF() when reference is known to be non-NULL.

This commit is contained in:
Fred Drake 1998-08-04 15:58:10 +00:00
parent fcfb6323fb
commit 7f875ef749

View file

@ -2704,7 +2704,7 @@ parser__pickler(self, args)
result = Py_BuildValue("O(O)", pickle_constructor, tuple);
Py_DECREF(tuple);
}
Py_XDECREF(newargs);
Py_DECREF(newargs);
}
finally:
return (result);