diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-08-02 04:27:11 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-08-02 04:27:11 (GMT) |
commit | 99dfe3c411bdaa835075a27fdccefef13d88e214 (patch) | |
tree | 0f7797f5275520980f3a022b9b19828f4760d030 /Modules/cPickle.c | |
parent | 62decc9f4966c060a3d4bcf762d8940d666496c5 (diff) | |
download | cpython-99dfe3c411bdaa835075a27fdccefef13d88e214.zip cpython-99dfe3c411bdaa835075a27fdccefef13d88e214.tar.gz cpython-99dfe3c411bdaa835075a27fdccefef13d88e214.tar.bz2 |
Prevent memory leak on error.
Reported by Klocwork #36
Diffstat (limited to 'Modules/cPickle.c')
-rw-r--r-- | Modules/cPickle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/cPickle.c b/Modules/cPickle.c index 9d979de..24c98cc 100644 --- a/Modules/cPickle.c +++ b/Modules/cPickle.c @@ -3401,11 +3401,11 @@ load_string(Unpicklerobject *self) /********************************************/ str = PyString_DecodeEscape(p, len, NULL, 0, NULL); + free(s); if (str) { PDATA_PUSH(self->stack, str, -1); res = 0; } - free(s); return res; insecure: |