summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaolo Borelli <pborelli@gnome.org>2015-12-13 19:32:39 +0100
committerPaolo Borelli <pborelli@gnome.org>2015-12-14 14:32:17 +0100
commitc97729532f54043edb959a2bd2ca6c5df5135658 (patch)
tree4241db901f1e8feb246004467a273f10148e1773
parent61136c2c7333a937adb20a4a43f32e66bf89c2f5 (diff)
downloadglib-c97729532f54043edb959a2bd2ca6c5df5135658.tar.gz
W32: fix uninitialized var in g_app_info_get_all_for_type
Compare with the handler->app, not with the app var which is not initialized yet https://bugzilla.gnome.org/show_bug.cgi?id=759408
-rw-r--r--gio/gwin32appinfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gio/gwin32appinfo.c b/gio/gwin32appinfo.c
index ae5a7dab5..b547012b6 100644
--- a/gio/gwin32appinfo.c
+++ b/gio/gwin32appinfo.c
@@ -4634,7 +4634,7 @@ g_app_info_get_all_for_type (const char *content_type)
while (g_hash_table_iter_next (&iter, NULL, (gpointer *) &handler))
{
if (handler->app &&
- (ext->chosen_handler == NULL || ext->chosen_handler->app != app))
+ (ext->chosen_handler == NULL || ext->chosen_handler->app != handler->app))
result = g_list_prepend (result,
g_win32_app_info_new_from_app (handler->app,
handler));