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 /src/cookies.c | |
parent | 1482352505d2a5ba21f23af86fe7c03d346baa9d (diff) |
- Fixed a memory leak in cookies.c
Diffstat (limited to 'src/cookies.c')
-rw-r--r-- | src/cookies.c | 1 |
1 files changed, 1 insertions, 0 deletions
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); } |