about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--src/main.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/main.c b/src/main.c
index 99ccfbc0..65f69966 100644
--- a/src/main.c
+++ b/src/main.c
@@ -178,14 +178,10 @@ main(int argc, char **argv)
     prof_run(log ? log : "INFO", account_name, config_file, log_file);
 
     /* Free resources allocated by GOptionContext */
-    if (log)
-        g_free(log);
-    if (account_name)
-        g_free(account_name);
-    if (config_file)
-        g_free(config_file);
-    if (log_file)
-        g_free(log_file);
+    g_free(log);
+    g_free(account_name);
+    g_free(config_file);
+    g_free(log_file);
 
     return 0;
 }