diff options
author | Barry Warsaw <barry@python.org> | 1999-01-27 16:33:19 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 1999-01-27 16:33:19 (GMT) |
commit | 54892c4b2cac50cc698be2ebede663b781cf4a37 (patch) | |
tree | 4a836f1b8cad7c92d77afd9400a6a13b95671539 /Python | |
parent | da452bf6a7b2063b50ba608ebbef3341f1a7109d (diff) | |
download | cpython-54892c4b2cac50cc698be2ebede663b781cf4a37.zip cpython-54892c4b2cac50cc698be2ebede663b781cf4a37.tar.gz cpython-54892c4b2cac50cc698be2ebede663b781cf4a37.tar.bz2 |
_PySys_Init(): Nailed small memory leak. The stringobject created for
sys.version was missing a Py_XDECREF().
Diffstat (limited to 'Python')
-rw-r--r-- | Python/sysmodule.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c index fb4ab96..5a066a5 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -400,6 +400,7 @@ _PySys_Init() Py_XDECREF(syserr); PyDict_SetItemString(sysdict, "version", v = PyString_FromString(Py_GetVersion())); + Py_XDECREF(v); PyDict_SetItemString(sysdict, "hexversion", v = PyInt_FromLong(PY_VERSION_HEX)); Py_XDECREF(v); |