gappinfo: Fix uninitialized-variable gcc warning

This commit is contained in:
Colin Walters
2012-05-26 11:53:14 -04:00
committed by Matthias Clasen
parent 9b9e99e6c8
commit 9851202b15

View File

@@ -653,7 +653,7 @@ g_app_info_launch_default_for_uri (const char *uri,
GError **error)
{
char *uri_scheme;
GAppInfo *app_info;
GAppInfo *app_info = NULL;
GList l;
gboolean res;