Fix T75909: icons memory leak in headless build

This commit is contained in:
Brecht Van Lommel 2020-04-21 21:43:25 +02:00
parent 13e3a1c532
commit f7374737ef
Notes: blender-bot 2023-02-14 06:23:08 +01:00
Referenced by issue #75909, small memleak in headless build.
1 changed files with 1 additions and 1 deletions

View File

@ -1129,8 +1129,8 @@ void UI_icons_free(void)
#ifndef WITH_HEADLESS
free_icons_textures();
free_iconfile_list(&iconfilelist);
BKE_icons_free();
#endif
BKE_icons_free();
}
void UI_icons_free_drawinfo(void *drawinfo)