commit | ff0ec52d3c60b1a7656cb8bab53e9ba1dd5b773b | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Sun Jul 27 01:52:50 1997 +0000 |
committer | Guido van Rossum <guido@python.org> | Sun Jul 27 01:52:50 1997 +0000 |
tree | 34dfbf4fea46f5380ae3b8111065ea7edc0e3e7e | |
parent | 6fc06e770fc8a4338a331e05f4ea85e01fc039fa [diff] |
Finally plug the memory leak caused by syntax error (including interactive EOF, which leaked *one* byte).
diff --git a/Parser/parsetok.c b/Parser/parsetok.c index 251e507..93df0d6 100644 --- a/Parser/parsetok.c +++ b/Parser/parsetok.c
@@ -154,8 +154,11 @@ str[len] = '\0'; if ((err_ret->error = PyParser_AddToken(ps, (int)type, str, - tok->lineno)) != E_OK) + tok->lineno)) != E_OK) { + if (err_ret->error != E_DONE) + PyMem_DEL(str); break; + } } if (err_ret->error == E_DONE) {