From a54fe1ca9c33931d7c4381a84ee11454f9831c08 Mon Sep 17 00:00:00 2001 From: cvs2svn Date: Sat, 31 May 2008 23:01:15 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'RELEASE_5_EOL'. --- lang/python30/files/patch-Modules-zlibmodule.c | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 lang/python30/files/patch-Modules-zlibmodule.c (limited to 'lang/python30/files/patch-Modules-zlibmodule.c') diff --git a/lang/python30/files/patch-Modules-zlibmodule.c b/lang/python30/files/patch-Modules-zlibmodule.c deleted file mode 100644 index 7875a40ada7c..000000000000 --- a/lang/python30/files/patch-Modules-zlibmodule.c +++ /dev/null @@ -1,13 +0,0 @@ ---- 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; - -- cgit v1.2.3