mirror of
https://github.com/python/cpython.git
synced 2025-09-19 07:00:59 +00:00
Issue #28426: Fixed potential crash in PyUnicode_AsDecodedObject() in debug build.
This commit is contained in:
commit
839023f12c
2 changed files with 5 additions and 10 deletions
|
@ -10,6 +10,9 @@ Release date: TBA
|
||||||
Core and Builtins
|
Core and Builtins
|
||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
|
- Issue #28426: Fixed potential crash in PyUnicode_AsDecodedObject() in debug
|
||||||
|
build.
|
||||||
|
|
||||||
- Issue #23782: Fixed possible memory leak in _PyTraceback_Add() and exception
|
- Issue #23782: Fixed possible memory leak in _PyTraceback_Add() and exception
|
||||||
loss in PyTraceBack_Here().
|
loss in PyTraceBack_Here().
|
||||||
|
|
||||||
|
|
|
@ -3026,24 +3026,16 @@ PyUnicode_AsDecodedObject(PyObject *unicode,
|
||||||
const char *encoding,
|
const char *encoding,
|
||||||
const char *errors)
|
const char *errors)
|
||||||
{
|
{
|
||||||
PyObject *v;
|
|
||||||
|
|
||||||
if (!PyUnicode_Check(unicode)) {
|
if (!PyUnicode_Check(unicode)) {
|
||||||
PyErr_BadArgument();
|
PyErr_BadArgument();
|
||||||
goto onError;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (encoding == NULL)
|
if (encoding == NULL)
|
||||||
encoding = PyUnicode_GetDefaultEncoding();
|
encoding = PyUnicode_GetDefaultEncoding();
|
||||||
|
|
||||||
/* Decode via the codec registry */
|
/* Decode via the codec registry */
|
||||||
v = PyCodec_Decode(unicode, encoding, errors);
|
return PyCodec_Decode(unicode, encoding, errors);
|
||||||
if (v == NULL)
|
|
||||||
goto onError;
|
|
||||||
return unicode_result(v);
|
|
||||||
|
|
||||||
onError:
|
|
||||||
return NULL;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
PyObject *
|
PyObject *
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue