diff options
author | Barry Warsaw <barry@python.org> | 2001-11-28 20:50:56 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2001-11-28 20:50:56 (GMT) |
commit | 01d697a06711d9070c459bc9f1028dd0abc79fab (patch) | |
tree | 45e8b8ea625d428628d9afca4a3624b94ea41d04 /Objects/complexobject.c | |
parent | 518ab1c02a01a1a502fedeccb62ea73f2a952ba7 (diff) | |
download | cpython-01d697a06711d9070c459bc9f1028dd0abc79fab.zip cpython-01d697a06711d9070c459bc9f1028dd0abc79fab.tar.gz cpython-01d697a06711d9070c459bc9f1028dd0abc79fab.tar.bz2 |
complex_to_buf(), complex_subtype_from_c_complex(): Conversion of
sprintf() to PyOS_snprintf() for buffer overrun avoidance.
complex_print(), complex_repr(), complex_str(): Call complex_to_buf()
passing in sizeof(buf).
Diffstat (limited to 'Objects/complexobject.c')
-rw-r--r-- | Objects/complexobject.c | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/Objects/complexobject.c b/Objects/complexobject.c index 68d842e..18dfa7d 100644 --- a/Objects/complexobject.c +++ b/Objects/complexobject.c @@ -270,20 +270,22 @@ complex_dealloc(PyObject *op) static void -complex_to_buf(char *buf, PyComplexObject *v, int precision) +complex_to_buf(char *buf, int bufsz, PyComplexObject *v, int precision) { if (v->cval.real == 0.) - sprintf(buf, "%.*gj", precision, v->cval.imag); + PyOS_snprintf(buf, bufsz, "%.*gj", + precision, v->cval.imag); else - sprintf(buf, "(%.*g%+.*gj)", precision, v->cval.real, - precision, v->cval.imag); + PyOS_snprintf(buf, bufsz, "(%.*g%+.*gj)", + precision, v->cval.real, + precision, v->cval.imag); } static int complex_print(PyComplexObject *v, FILE *fp, int flags) { char buf[100]; - complex_to_buf(buf, v, + complex_to_buf(buf, sizeof(buf), v, (flags & Py_PRINT_RAW) ? PREC_STR : PREC_REPR); fputs(buf, fp); return 0; @@ -293,7 +295,7 @@ static PyObject * complex_repr(PyComplexObject *v) { char buf[100]; - complex_to_buf(buf, v, PREC_REPR); + complex_to_buf(buf, sizeof(buf), v, PREC_REPR); return PyString_FromString(buf); } @@ -301,7 +303,7 @@ static PyObject * complex_str(PyComplexObject *v) { char buf[100]; - complex_to_buf(buf, v, PREC_STR); + complex_to_buf(buf, sizeof(buf), v, PREC_STR); return PyString_FromString(buf); } @@ -752,7 +754,7 @@ complex_subtype_from_string(PyTypeObject *type, PyObject *v) z = strtod(s, &end) ; PyFPE_END_PROTECT(z) if (errno != 0) { - sprintf(buffer, + PyOS_snprintf(buffer, sizeof(buffer), "float() out of range: %.150s", s); PyErr_SetString( PyExc_ValueError, |