[Python-checkins] r70682 - python/trunk/Objects/stringobject.c

mark.dickinson python-checkins at python.org
Sun Mar 29 18:17:17 CEST 2009


Author: mark.dickinson
Date: Sun Mar 29 18:17:16 2009
New Revision: 70682

Log:
Issue #532631:  Add paranoid check to avoid potential buffer overflow
on systems with sizeof(int) > 4.


Modified:
   python/trunk/Objects/stringobject.c

Modified: python/trunk/Objects/stringobject.c
==============================================================================
--- python/trunk/Objects/stringobject.c	(original)
+++ python/trunk/Objects/stringobject.c	Sun Mar 29 18:17:16 2009
@@ -4344,6 +4344,15 @@
 	}
 	if (prec < 0)
 		prec = 6;
+	/* make sure that the decimal representation of precision really does
+	   need at most 10 digits: platforms with sizeof(int) == 8 exist! */
+	if (prec > 0x7fffffffL) {
+		PyErr_SetString(PyExc_OverflowError,
+				"outrageously large precision "
+				"for formatted float");
+		return -1;
+	}
+
 	if (type == 'f' && fabs(x) >= 1e50)
 		type = 'g';
 	/* Worst case length calc to ensure no buffer overrun:
@@ -4372,7 +4381,7 @@
 	PyOS_snprintf(fmt, sizeof(fmt), "%%%s.%d%c",
 		      (flags&F_ALT) ? "#" : "",
 		      prec, type);
-        PyOS_ascii_formatd(buf, buflen, fmt, x);
+	PyOS_ascii_formatd(buf, buflen, fmt, x);
 	return (int)strlen(buf);
 }
 


More information about the Python-checkins mailing list