Commit 6b6e0aaf authored by Guido van Rossum's avatar Guido van Rossum

DECREF result of run_string

parent 0b344901
......@@ -782,7 +782,6 @@ eval_code(co, globals, locals, owner, arg)
u = w;
w = gettupleitem(u, 0);
INCREF(w);
INCREF(w);
DECREF(u);
}
if (is_stringobject(w)) {
......@@ -2657,6 +2656,7 @@ exec_statement(prog, globals, locals)
{
char *s;
int n;
object *v;
if (is_tupleobject(prog) && globals == None && locals == None &&
((n = gettuplesize(prog)) == 2 || n == 3)) {
......@@ -2705,7 +2705,8 @@ exec_statement(prog, globals, locals)
err_setstr(ValueError, "embedded '\\0' in exec string");
return -1;
}
if (run_string(s, file_input, globals, locals) == NULL)
if ((v = run_string(s, file_input, globals, locals)) == NULL)
return -1;
DECREF(v);
return 0;
}
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