From: tokyo4j Date: Mon, 11 Nov 2024 22:24:54 +0000 (+0900) Subject: icon-loader: fix memory leak of icon_loader->icon_theme X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=b08f753497412e4668ec4301100ba72e69468c51;p=proto%2Flabwc.git icon-loader: fix memory leak of icon_loader->icon_theme --- diff --git a/src/icon-loader.c b/src/icon-loader.c index bf4f2fa3..43c5f48a 100644 --- a/src/icon-loader.c +++ b/src/icon-loader.c @@ -117,6 +117,7 @@ icon_loader_finish(struct server *server) return; } + sfdo_icon_theme_destroy(loader->icon_theme); sfdo_desktop_db_destroy(loader->desktop_db); sfdo_icon_ctx_destroy(loader->icon_ctx); sfdo_desktop_ctx_destroy(loader->desktop_ctx);