1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-09-22 04:15:54 -04:00

Fix: Free memory used for header names

This commit is contained in:
Philipp Schafft 2018-09-19 12:56:35 +00:00
parent e10c32a837
commit 8a08ae25c3

View File

@ -136,6 +136,8 @@ static void auth_url_clear(auth_t *self)
free(url->removeaction);
free(url->auth_header);
free(url->timelimit_header);
free(url->header_auth);
free(url->header_timelimit);
free(url->userpwd);
free(url);
}