Commit 7f875ef7 authored by Fred Drake's avatar Fred Drake

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

parent fcfb6323
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment