aboutsummaryrefslogtreecommitdiff
path: root/lang/python30/files/patch-Modules-zlibmodule.c
blob: 7875a40ada7c4ac6bffc1ab520bedffd182a461a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
--- Modules/zlibmodule.c.orig	2008-04-25 01:47:26.000000000 +0200
+++ Modules/zlibmodule.c	2008-04-25 01:48:17.000000000 +0200
@@ -774,6 +774,10 @@
 
     if (!PyArg_ParseTuple(args, "|i:flush", &length))
 	return NULL;
+    if (length <= 0) {
+	PyErr_SetString(PyExc_ValueError, "length must be greater than zero");
+	return NULL;
+	}
     if (!(retval = PyString_FromStringAndSize(NULL, length)))
 	return NULL;