diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2010-12-23 22:53:27 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2010-12-23 22:53:27 +0800 |
commit | 307a2f30b5a426ef97d7f566d3970d48e9a9613d (patch) | |
tree | 3b2f93b2a54b14afadeb731014514e68531ba45f /src | |
parent | fdcf1b26fd44a44c0dfe882f19ec2782cccd542c (diff) | |
download | gsoc2013-empathy-307a2f30b5a426ef97d7f566d3970d48e9a9613d.tar gsoc2013-empathy-307a2f30b5a426ef97d7f566d3970d48e9a9613d.tar.gz gsoc2013-empathy-307a2f30b5a426ef97d7f566d3970d48e9a9613d.tar.bz2 gsoc2013-empathy-307a2f30b5a426ef97d7f566d3970d48e9a9613d.tar.lz gsoc2013-empathy-307a2f30b5a426ef97d7f566d3970d48e9a9613d.tar.xz gsoc2013-empathy-307a2f30b5a426ef97d7f566d3970d48e9a9613d.tar.zst gsoc2013-empathy-307a2f30b5a426ef97d7f566d3970d48e9a9613d.zip |
Fix build warnings for uninitialized variables
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-accounts-dialog.c | 2 | ||||
-rw-r--r-- | src/empathy-main-window.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/empathy-accounts-dialog.c b/src/empathy-accounts-dialog.c index a155feceb..06605dbbe 100644 --- a/src/empathy-accounts-dialog.c +++ b/src/empathy-accounts-dialog.c @@ -2295,7 +2295,7 @@ empathy_accounts_dialog_show_application (GdkScreen *screen, GString *cmd; gchar *path; GAppInfo *app_info; - GdkAppLaunchContext *context; + GdkAppLaunchContext *context = NULL; g_return_if_fail (GDK_IS_SCREEN (screen)); g_return_if_fail (!selected_account || TP_IS_ACCOUNT (selected_account)); diff --git a/src/empathy-main-window.c b/src/empathy-main-window.c index e0b05531b..88335b654 100644 --- a/src/empathy-main-window.c +++ b/src/empathy-main-window.c @@ -1483,7 +1483,7 @@ main_window_help_debug_cb (GtkAction *action, GError *error = NULL; gchar *path; GAppInfo *app_info; - GdkAppLaunchContext *context; + GdkAppLaunchContext *context = NULL; g_return_if_fail (GDK_IS_SCREEN (screen)); |