diff options
author | jcid <devnull@localhost> | 2008-02-01 22:26:48 +0100 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-02-01 22:26:48 +0100 |
commit | b141396a7eae642f54f91500a80d408c95b62dcb (patch) | |
tree | 13700008659da12591d6669fedcf30eaed8fcb53 | |
parent | 1482352505d2a5ba21f23af86fe7c03d346baa9d (diff) |
- Fixed a memory leak in cookies.c
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/cookies.c | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -78,6 +78,7 @@ dillo-fltk2 - Added support for progressive display of progressive jpegs. - Fixed progressive display of interlaced pngs. - Enabled colspan=0 in tables parsing. + - Fixed a memory leak in cookies.c Patches: place +- Fixed a problem with locally-installed dpis. - Added code for optional image loading (nice interface) very advanced! diff --git a/src/cookies.c b/src/cookies.c index 63b98837..accdd9ad 100644 --- a/src/cookies.c +++ b/src/cookies.c @@ -198,6 +198,7 @@ char *a_Cookies_get(const DilloUrl *request_url) dFree(cmd); if (dpip_tag != NULL) { + dFree(cookie); cookie = a_Dpip_get_attr(dpip_tag, strlen(dpip_tag), "cookie"); dFree(dpip_tag); } |