1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2025-04-14 17:43:01 -04:00

[RofiIconFetcher] Add missing free

This commit is contained in:
Dave Davenport 2020-10-20 20:40:47 +02:00
parent deb1e6a208
commit 4878c5bd13

View file

@ -134,12 +134,14 @@ void rofi_icon_fetcher_init ( void )
for ( unsigned int i = 0; exts && exts[i]; i ++ ) {
rofi_icon_fetcher_data->supported_extensions = g_list_append ( rofi_icon_fetcher_data->supported_extensions, exts[i]);
g_info ( "Add image extension: %s", exts[i]);
exts[i] = NULL;
}
g_free ( exts );
}
g_slist_free ( l );
}