summaryrefslogtreecommitdiff
path: root/x11-toolkits/wxgtk26/files/patch-src-common-string.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'x11-toolkits/wxgtk26/files/patch-src-common-string.cpp')
-rw-r--r--x11-toolkits/wxgtk26/files/patch-src-common-string.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/x11-toolkits/wxgtk26/files/patch-src-common-string.cpp b/x11-toolkits/wxgtk26/files/patch-src-common-string.cpp
deleted file mode 100644
index f88da4cc4be9..000000000000
--- a/x11-toolkits/wxgtk26/files/patch-src-common-string.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
---- src/common/string.cpp.orig Mon Feb 21 15:53:48 2005
-+++ src/common/string.cpp Tue Feb 22 01:39:54 2005
-@@ -39,6 +39,7 @@
- #endif
-
- #include <ctype.h>
-+#include <errno.h>
- #include <string.h>
- #include <stdlib.h>
-
-@@ -1956,6 +1957,9 @@
- // ok, there was enough space
- break;
- }
-+
-+ if (errno != EOVERFLOW)
-+ break;
-
- // still not enough, double it again
- size *= 2;