aboutsummaryrefslogtreecommitdiffstats
path: root/main/libxml2/libxml2-entities-local-buffers-size2.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/libxml2/libxml2-entities-local-buffers-size2.patch')
-rw-r--r--main/libxml2/libxml2-entities-local-buffers-size2.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/main/libxml2/libxml2-entities-local-buffers-size2.patch b/main/libxml2/libxml2-entities-local-buffers-size2.patch
deleted file mode 100644
index f3cc8b65e4..0000000000
--- a/main/libxml2/libxml2-entities-local-buffers-size2.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-From baaf03f80f817bb34c421421e6cb4d68c353ac9a Mon Sep 17 00:00:00 2001
-From: Aron Xu <happyaron.xu@gmail.com>
-Date: Fri, 20 Jul 2012 07:41:34 +0000
-Subject: Fix an error in previous commit
-
----
-diff --git a/entities.c b/entities.c
-index 859ec3b..7d06820 100644
---- a/entities.c
-+++ b/entities.c
-@@ -529,7 +529,7 @@ xmlGetDocEntity(xmlDocPtr doc, const xmlChar *name) {
- */
- #define growBufferReentrant() { \
- xmlChar *tmp; \
-- size_t new_size = buffer_size *= 2; \
-+ size_t new_size = buffer_size * 2; \
- if (new_size < buffer_size) goto mem_error; \
- tmp = (xmlChar *) xmlRealloc(buffer, new_size); \
- if (tmp == NULL) goto mem_error; \
---
-cgit v0.9.0.2