summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2020-03-12 07:30:56 (GMT)
committerGitHub <noreply@github.com>2020-03-12 07:30:56 (GMT)
commitab9c72912178cfdb4d0637be036d78913b769154 (patch)
tree77073e14869d7d6dd3d571fff812d6984d379dd2 /Objects
parent99ef1ac9a7793dcdf624d2400e51ed34eb8d0af3 (diff)
downloadcpython-ab9c72912178cfdb4d0637be036d78913b769154.zip
cpython-ab9c72912178cfdb4d0637be036d78913b769154.tar.gz
cpython-ab9c72912178cfdb4d0637be036d78913b769154.tar.bz2
[3.8] bpo-38643: Raise SystemError instead of crashing when PyNumber_ToBase is called with invalid base. (GH-18863). (GH-18954)
(cherry picked from commit e5ccc94bbb153431698b2391df625e8d47a93276)
Diffstat (limited to 'Objects')
-rw-r--r--Objects/abstract.c15
1 files changed, 6 insertions, 9 deletions
diff --git a/Objects/abstract.c b/Objects/abstract.c
index bc1ebd9..4fabfd7 100644
--- a/Objects/abstract.c
+++ b/Objects/abstract.c
@@ -1509,18 +1509,15 @@ PyNumber_Float(PyObject *o)
PyObject *
PyNumber_ToBase(PyObject *n, int base)
{
- PyObject *res = NULL;
+ if (!(base == 2 || base == 8 || base == 10 || base == 16)) {
+ PyErr_SetString(PyExc_SystemError,
+ "PyNumber_ToBase: base must be 2, 8, 10 or 16");
+ return NULL;
+ }
PyObject *index = PyNumber_Index(n);
-
if (!index)
return NULL;
- if (PyLong_Check(index))
- res = _PyLong_Format(index, base);
- else
- /* It should not be possible to get here, as
- PyNumber_Index already has a check for the same
- condition */
- PyErr_SetString(PyExc_ValueError, "PyNumber_ToBase: index not int");
+ PyObject *res = _PyLong_Format(index, base);
Py_DECREF(index);
return res;
}