mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
Plug memory leaks
This commit is contained in:
parent
3d7797c46e
commit
eab853b7e6
@ -1,3 +1,11 @@
|
|||||||
|
2014-07-23 Darshit Shah <darnir@gmail.com>
|
||||||
|
|
||||||
|
* http.c (gethttp): Fix a memory leak when retrying authorization
|
||||||
|
(gethttp): Fix memory leak when trying to parse content disposition headers
|
||||||
|
(http_loop): Assigning a new value to *local)file without freeing the old
|
||||||
|
one causes a memory leak
|
||||||
|
(http_loop): Free the HTTP message and error strings before continuing loop
|
||||||
|
|
||||||
2014-07-21 Daniel Stenberg <daniel@haxx.se>
|
2014-07-21 Daniel Stenberg <daniel@haxx.se>
|
||||||
|
|
||||||
* main.c (print_help): HTTP Method is a part of the Request not Header
|
* main.c (print_help): HTTP Method is a part of the Request not Header
|
||||||
|
10
src/http.c
10
src/http.c
@ -2423,6 +2423,7 @@ read_header:
|
|||||||
resp_free (resp);
|
resp_free (resp);
|
||||||
xfree (head);
|
xfree (head);
|
||||||
xfree (auth_stat);
|
xfree (auth_stat);
|
||||||
|
xfree (hs->message);
|
||||||
goto retry_with_auth;
|
goto retry_with_auth;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -2474,6 +2475,8 @@ read_header:
|
|||||||
local_file));
|
local_file));
|
||||||
hs->local_file = url_file_name (u, local_file);
|
hs->local_file = url_file_name (u, local_file);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
xfree_null (local_file);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* TODO: perform this check only once. */
|
/* TODO: perform this check only once. */
|
||||||
@ -3411,6 +3414,8 @@ Remote file exists.\n\n"));
|
|||||||
got_name = true;
|
got_name = true;
|
||||||
*dt &= ~HEAD_ONLY;
|
*dt &= ~HEAD_ONLY;
|
||||||
count = 0; /* the retrieve count for HEAD is reset */
|
count = 0; /* the retrieve count for HEAD is reset */
|
||||||
|
xfree_null (hstat.message);
|
||||||
|
xfree_null (hstat.error);
|
||||||
continue;
|
continue;
|
||||||
} /* send_head_first */
|
} /* send_head_first */
|
||||||
} /* !got_head */
|
} /* !got_head */
|
||||||
@ -3558,7 +3563,10 @@ Remote file exists.\n\n"));
|
|||||||
|
|
||||||
exit:
|
exit:
|
||||||
if (ret == RETROK && local_file)
|
if (ret == RETROK && local_file)
|
||||||
*local_file = xstrdup (hstat.local_file);
|
{
|
||||||
|
xfree_null (*local_file);
|
||||||
|
*local_file = xstrdup (hstat.local_file);
|
||||||
|
}
|
||||||
free_hstat (&hstat);
|
free_hstat (&hstat);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
Loading…
Reference in New Issue
Block a user