mirror of
https://github.com/python/cpython.git
synced 2026-05-18 02:15:28 -04:00
Bug #1502750: Fix getargs "i" format to use LONG_MIN and LONG_MAX for bounds checking.
This commit is contained in:
+2
-2
@@ -624,12 +624,12 @@ convertsimple(PyObject *arg, const char **p_format, va_list *p_va, int flags,
|
||||
ival = PyInt_AsLong(arg);
|
||||
if (ival == -1 && PyErr_Occurred())
|
||||
return converterr("integer<i>", arg, msgbuf, bufsize);
|
||||
else if (ival > INT_MAX) {
|
||||
else if (ival > LONG_MAX) {
|
||||
PyErr_SetString(PyExc_OverflowError,
|
||||
"signed integer is greater than maximum");
|
||||
return converterr("integer<i>", arg, msgbuf, bufsize);
|
||||
}
|
||||
else if (ival < INT_MIN) {
|
||||
else if (ival < LONG_MIN) {
|
||||
PyErr_SetString(PyExc_OverflowError,
|
||||
"signed integer is less than minimum");
|
||||
return converterr("integer<i>", arg, msgbuf, bufsize);
|
||||
|
||||
Reference in New Issue
Block a user