diff options
author | Rod Whitby <rod@whitby.id.au> | 2006-08-27 17:31:19 +0000 |
---|---|---|
committer | Rod Whitby <rod@whitby.id.au> | 2006-08-27 17:31:19 +0000 |
commit | a964dcbb6ccacf0ce9619734b9b4d5affb5e8690 (patch) | |
tree | 79debc84d115e3331af9e384af855e5dfdb25d2c /packages/links/files/links-2.1pre17-fix-segfault-on-loading-cookies.patch | |
parent | 9ed508b79ebe8933af15a7fd84f7db0837d5ad9f (diff) | |
parent | 69383bc09ea895755f1ed236c686e5c6cdf9ced7 (diff) |
merge of 48ae35df5bbd7e08a5f1ce6f0ef4e35abc956615
and b4baa952a21796f3da8adaf6acd8c844668a33d8
Diffstat (limited to 'packages/links/files/links-2.1pre17-fix-segfault-on-loading-cookies.patch')
-rw-r--r-- | packages/links/files/links-2.1pre17-fix-segfault-on-loading-cookies.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/packages/links/files/links-2.1pre17-fix-segfault-on-loading-cookies.patch b/packages/links/files/links-2.1pre17-fix-segfault-on-loading-cookies.patch new file mode 100644 index 0000000000..0d3b407e2a --- /dev/null +++ b/packages/links/files/links-2.1pre17-fix-segfault-on-loading-cookies.patch @@ -0,0 +1,20 @@ +--- links-2.1pre17/cookies.c.pix 2005-05-15 23:05:10.000000000 +0800 ++++ links-2.1pre17/cookies.c 2005-05-15 23:17:21.000000000 +0800 +@@ -41,7 +41,7 @@ + + void free_cookie(struct cookie *c) + { +- mem_free(c->name); ++ if (c->value) mem_free(c->name); + if (c->value) mem_free(c->value); + if (c->server) mem_free(c->server); + if (c->path) mem_free(c->path); +@@ -355,7 +355,7 @@ + + inv: + free_cookie(cookie); +- free(cookie); ++ mem_free(cookie); + } + fclose(fp); + } |