[PATCH] http.c
Nisan Bloch <[email protected]>
| Newsgroups | gmane.comp.mobile.kannel.devel |
|---|---|
| Message-ID | <[email protected]> |
Hi
small memory leak in http.c,
--- gwlib/http.c Mon Nov 18 08:02:13 2002
+++ ../../gateway-cvsup/gwlib/http.c Mon Nov 25 11:45:50 2002
@@ -1226,6 +1226,10 @@
path = NULL;
request = NULL;
+ if (trans->host != NULL)
+ octstr_destroy(trans->host);
+ trans->host = NULL;
+
if (parse_url(trans->url, &trans->host, &trans->port, &path, &trans->ssl,
&trans->username, &trans->password) == -1)
Nisan