summaryrefslogtreecommitdiff
path: root/lang/python30/files/patch-modules_almodule.c
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2008-11-19 10:43:57 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2008-11-19 10:43:57 +0000
commitf982be45e81588a27383cd1a3eb12789b8498904 (patch)
tree07be283d015b2c39f95e655cb7328ff355bc47fa /lang/python30/files/patch-modules_almodule.c
parent- Fix modes of the temp directory [1] (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_6_4_0'.release/6.4.0
Notes
Notes: svn path=/head/; revision=223035 svn path=/tags/RELEASE_6_4_0/; revision=223036; tag=release/6.4.0
Diffstat (limited to 'lang/python30/files/patch-modules_almodule.c')
-rw-r--r--lang/python30/files/patch-modules_almodule.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/lang/python30/files/patch-modules_almodule.c b/lang/python30/files/patch-modules_almodule.c
deleted file mode 100644
index 8e3b9b11380d..000000000000
--- a/lang/python30/files/patch-modules_almodule.c
+++ /dev/null
@@ -1,14 +0,0 @@
---- Modules/almodule.c.orig 2006-09-25 07:53:42.000000000 +0100
-+++ Modules/almodule.c 2008-08-30 10:39:43.000000000 +0100
-@@ -1633,9 +1633,11 @@
- if (nvals < 0)
- goto cleanup;
- if (nvals > setsize) {
-+ ALvalue *old_return_set = return_set;
- setsize = nvals;
- PyMem_RESIZE(return_set, ALvalue, setsize);
- if (return_set == NULL) {
-+ return_set = old_return_set;
- PyErr_NoMemory();
- goto cleanup;
- }