summaryrefslogtreecommitdiff
path: root/package/squid/patches/patch-lib_util_c
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2009-08-24 19:19:10 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2009-08-24 19:19:10 +0200
commite74eccf3fa0585abfbe52154646812d20f2560a2 (patch)
tree7f8ce3c103d7fbd7a98b4749c26f10de197871d4 /package/squid/patches/patch-lib_util_c
parent0f8469e5c7f3477b3c521fb7f672fca8c294c0f3 (diff)
parentd3f9368c4bc389e7838abc4077d6ce92b77b2d31 (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/squid/patches/patch-lib_util_c')
-rw-r--r--package/squid/patches/patch-lib_util_c12
1 files changed, 0 insertions, 12 deletions
diff --git a/package/squid/patches/patch-lib_util_c b/package/squid/patches/patch-lib_util_c
deleted file mode 100644
index 562be88fc..000000000
--- a/package/squid/patches/patch-lib_util_c
+++ /dev/null
@@ -1,12 +0,0 @@
---- squid-3.0.STABLE15.orig/lib/util.c 2009-05-06 13:11:38.000000000 +0200
-+++ squid-3.0.STABLE15/lib/util.c 2009-06-04 21:05:19.000000000 +0200
-@@ -751,7 +751,8 @@ xstrdup(const char *s)
- /* copy string, including terminating character */
- sz = strlen(s) + 1;
-
-- p = memcpy((char *)xmalloc(sz), s, sz);
-+ p = (char *)xmalloc(sz);
-+ memcpy(p, s, sz);
-
- PROF_stop(xstrdup);
-