summaryrefslogtreecommitdiffstats
path: root/devel/python3/wchar.patch
diff options
context:
space:
mode:
Diffstat (limited to 'devel/python3/wchar.patch')
-rw-r--r--devel/python3/wchar.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/devel/python3/wchar.patch b/devel/python3/wchar.patch
deleted file mode 100644
index 7d63003506..0000000000
--- a/devel/python3/wchar.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- Modules/python.c.orig 2009-05-29 18:22:26.000000000 +0200
-+++ Modules/python.c 2009-06-29 16:18:12.800560478 +0200
-@@ -57,7 +57,7 @@
- /* Overallocate; as multi-byte characters are in the argument, the
- actual output could use less memory. */
- argsize = strlen(arg) + 1;
-- res = PyMem_Malloc(argsize*sizeof(wchar_t));
-+ res = (wchar_t *)PyMem_Malloc(argsize*sizeof(wchar_t));
- if (!res) goto oom;
- in = (unsigned char*)arg;
- out = res;