summaryrefslogtreecommitdiffstats
path: root/Modules/_tkinter.c
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2000-06-19 00:55:09 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2000-06-19 00:55:09 (GMT)
commit288e97b7fefb9b766b77a858fc34003c6d259d98 (patch)
treee2fc7db0e3573130cc1928c21605702837c22fad /Modules/_tkinter.c
parent49ef6dc1f44c6d831fdd5c127b424cb5ecef2b78 (diff)
downloadcpython-288e97b7fefb9b766b77a858fc34003c6d259d98.zip
cpython-288e97b7fefb9b766b77a858fc34003c6d259d98.tar.gz
cpython-288e97b7fefb9b766b77a858fc34003c6d259d98.tar.bz2
Patch from Michael Hudson to fix flatten recursive data structures:
[mwh21@atrus build]$ ./python >>> import Tkinter >>> l = [] >>> l.append(l) >>> Tkinter._flatten(l) Segmentation fault (core dumped)
Diffstat (limited to 'Modules/_tkinter.c')
-rw-r--r--Modules/_tkinter.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c
index baf117d..da90559 100644
--- a/Modules/_tkinter.c
+++ b/Modules/_tkinter.c
@@ -2001,13 +2001,16 @@ _bump(FlattenContext* context, int size)
}
static int
-_flatten1(FlattenContext* context, PyObject* item)
+_flatten1(FlattenContext* context, PyObject* item, int depth)
{
/* add tuple or list to argument tuple (recursively) */
int i, size;
- if (PyList_Check(item)) {
+ if (depth > 1000) {
+ PyErr_SetString(PyExc_ValueError,"nesting too deep in _flatten");
+ return 0;
+ } else if (PyList_Check(item)) {
size = PyList_GET_SIZE(item);
/* preallocate (assume no nesting) */
if (context->size + size > context->maxsize && !_bump(context, size))
@@ -2016,7 +2019,7 @@ _flatten1(FlattenContext* context, PyObject* item)
for (i = 0; i < size; i++) {
PyObject *o = PyList_GET_ITEM(item, i);
if (PyList_Check(o) || PyTuple_Check(o)) {
- if (!_flatten1(context, o))
+ if (!_flatten1(context, o, depth + 1))
return 0;
} else if (o != Py_None) {
if (context->size + 1 > context->maxsize && !_bump(context, 1))
@@ -2033,7 +2036,7 @@ _flatten1(FlattenContext* context, PyObject* item)
for (i = 0; i < size; i++) {
PyObject *o = PyTuple_GET_ITEM(item, i);
if (PyList_Check(o) || PyTuple_Check(o)) {
- if (!_flatten1(context, o))
+ if (!_flatten1(context, o, depth + 1))
return 0;
} else if (o != Py_None) {
if (context->size + 1 > context->maxsize && !_bump(context, 1))
@@ -2068,7 +2071,7 @@ Tkinter_Flatten(PyObject* self, PyObject* args)
context.size = 0;
- if (!_flatten1(&context, item))
+ if (!_flatten1(&context, item,0))
return NULL;
if (_PyTuple_Resize(&context.tuple, context.size, 0))