Merge branch 'backport-573-gwin32appinfo-uninit-free-glib-2-58' into 'glib-2-58'

Backport gwin32appinfo: Fix a potential free of an uninitialised variable to glib-2-58

See merge request GNOME/glib!586
This commit is contained in:
Christoph Reiter 2019-01-15 17:07:32 +00:00
commit 8329641a28

View File

@ -1426,7 +1426,7 @@ collect_capable_apps_from_clients (GPtrArray *capable_apps,
GWin32RegistrySubkeyIter subkey_iter;
GWin32RegistryKey *system_client_type;
GWin32RegistryValueType default_type;
gunichar2 *default_value;
gunichar2 *default_value = NULL;
gunichar2 *client_name;
gsize client_name_len;