From 9b77c03453bdb9b3eb8cdfa1d2885653d56d770b Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Sun, 2 Oct 2005 01:48:49 +0000 Subject: - Fix segfault with invalid coding. - SF Bug #772896, unknown encoding results in MemoryError, which is not helpful I will only backport the segfault fix. I'll let Anthony decide if he wants the other changes backported. I will do the backport if asked. --- Python/pythonrun.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/pythonrun.c') diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 68948fc34c..e007f98a9b 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -1487,7 +1487,7 @@ err_input(perrdetail *err) msg = "unknown decode error"; Py_DECREF(type); Py_DECREF(value); - Py_DECREF(tb); + Py_XDECREF(tb); break; } case E_LINECONT: -- cgit v1.2.1