mirror of
https://github.com/python/cpython.git
synced 2025-07-23 11:15:24 +00:00
- 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.
This commit is contained in:
parent
d45014b236
commit
40d3781416
7 changed files with 39 additions and 3 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue