diff options
author | Barry Warsaw <barry@python.org> | 1997-01-09 22:22:05 +0000 |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 1997-01-09 22:22:05 +0000 |
commit | 4bc9d3956059fd8ba6e41e8550336dc6de60bb02 (patch) | |
tree | 49357906a5f371ffd6b570dbcd64babf1a3ebe35 /Modules/pwdmodule.c | |
parent | 4b76ba3280634886356782c0ecc66ac08895826a (diff) | |
download | cpython-git-4bc9d3956059fd8ba6e41e8550336dc6de60bb02.tar.gz |
Nailed a couple of memory leaks, caught by Purify.
Diffstat (limited to 'Modules/pwdmodule.c')
-rw-r--r-- | Modules/pwdmodule.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/pwdmodule.c b/Modules/pwdmodule.c index 69a81ef354..4b09312e8a 100644 --- a/Modules/pwdmodule.c +++ b/Modules/pwdmodule.c @@ -109,6 +109,7 @@ pwd_getpwall(self, args) Py_DECREF(d); return NULL; } + Py_DECREF(v); } return d; } |