2
0
Fork 0

fix mem leak in mod_dirlist

personal/stbuehler/wip
Thomas Porzelt 2009-03-06 18:55:00 +01:00
parent 8afe9aff3d
commit a874e682c7
1 changed files with 1 additions and 0 deletions

View File

@ -345,6 +345,7 @@ static handler_t dirlist(vrequest *vr, gpointer param, gpointer *context) {
g_string_append_printf(listing, html_footer, CORE_OPTION(CORE_OPTION_SERVER_TAG).string->str);
chunkqueue_append_string(vr->out, listing);
g_string_free(encoded, TRUE);
g_array_free(directories, TRUE);
g_array_free(files, TRUE);
}