mirror of
https://github.com/python/cpython.git
synced 2025-08-22 09:45:06 +00:00
(Merge 3.3) Issue #18137: Detect integer overflow on precision in
float.__format__() and complex.__format__().
This commit is contained in:
commit
2ab07f01a4
3 changed files with 34 additions and 2 deletions
|
@ -982,7 +982,7 @@ format_float_internal(PyObject *value,
|
|||
Py_ssize_t n_total;
|
||||
int has_decimal;
|
||||
double val;
|
||||
Py_ssize_t precision = format->precision;
|
||||
Py_ssize_t precision;
|
||||
Py_ssize_t default_precision = 6;
|
||||
Py_UCS4 type = format->type;
|
||||
int add_pct = 0;
|
||||
|
@ -999,6 +999,12 @@ format_float_internal(PyObject *value,
|
|||
from a hard-code pseudo-locale */
|
||||
LocaleInfo locale = STATIC_LOCALE_INFO_INIT;
|
||||
|
||||
if (format->precision > INT_MAX) {
|
||||
PyErr_SetString(PyExc_ValueError, "precision too big");
|
||||
goto done;
|
||||
}
|
||||
precision = (int)format->precision;
|
||||
|
||||
if (format->alternate)
|
||||
flags |= Py_DTSF_ALT;
|
||||
|
||||
|
@ -1132,7 +1138,7 @@ format_complex_internal(PyObject *value,
|
|||
Py_ssize_t n_im_total;
|
||||
int re_has_decimal;
|
||||
int im_has_decimal;
|
||||
Py_ssize_t precision = format->precision;
|
||||
int precision;
|
||||
Py_ssize_t default_precision = 6;
|
||||
Py_UCS4 type = format->type;
|
||||
Py_ssize_t i_re;
|
||||
|
@ -1160,6 +1166,12 @@ format_complex_internal(PyObject *value,
|
|||
from a hard-code pseudo-locale */
|
||||
LocaleInfo locale = STATIC_LOCALE_INFO_INIT;
|
||||
|
||||
if (format->precision > INT_MAX) {
|
||||
PyErr_SetString(PyExc_ValueError, "precision too big");
|
||||
goto done;
|
||||
}
|
||||
precision = (int)format->precision;
|
||||
|
||||
/* Zero padding is not allowed. */
|
||||
if (format->fill_char == '0') {
|
||||
PyErr_SetString(PyExc_ValueError,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue