diff options
Diffstat (limited to 'shell/syncmanager.c')
-rw-r--r-- | shell/syncmanager.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/shell/syncmanager.c b/shell/syncmanager.c index 496dc348..ce50d429 100644 --- a/shell/syncmanager.c +++ b/shell/syncmanager.c @@ -326,14 +326,12 @@ static gboolean _action_call_function(SyncDialog * sd, gpointer user_data) VERSION, ARCH, sna->entry->name, str_data, NULL)) { - if (str_data) - g_free(str_data); + g_free(str_data); return FALSE; } - if (str_data) - g_free(str_data); + g_free(str_data); } return sna->error ? FALSE : TRUE; |