Fixed possible NULL decrefing.

This commit is contained in:
Serhiy Storchaka 2016-10-28 12:14:34 +03:00
parent 7865dfff2e
commit 3ec5f421c5
1 changed files with 1 additions and 1 deletions

View File

@ -1779,7 +1779,7 @@ var_perform(VarEvent *ev)
PyErr_NormalizeException(&exc, &val, &tb); PyErr_NormalizeException(&exc, &val, &tb);
*(ev->exc_type) = exc; *(ev->exc_type) = exc;
*(ev->exc_val) = val; *(ev->exc_val) = val;
Py_DECREF(tb); Py_XDECREF(tb);
} }
} }