This is an automated email from the git hooks/post-receive script.

bluesabre pushed a 
commit to branch 
master
in repository apps/xfce4-screensaver.

commit d0ecee37a59b56452689742c12183cc18ee8dd73
Author: Sean Davis <smd.seanda...@gmail.com>
Date:   Thu Jun 6 21:51:49 2019 -0400

    Fix CID 213287: Unchecked return value
---
 src/gs-theme-manager.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/gs-theme-manager.c b/src/gs-theme-manager.c
index fb19df6..5ca5a0b 100644
--- a/src/gs-theme-manager.c
+++ b/src/gs-theme-manager.c
@@ -107,18 +107,18 @@ find_command (const char *command) {
 
 static gboolean
 check_command (const char *command) {
-    char *path;
     char **argv;
 
     g_return_val_if_fail (command != NULL, FALSE);
 
-    g_shell_parse_argv (command, NULL, &argv, NULL);
-    path = find_command (argv[0]);
-    g_strfreev (argv);
+    if (g_shell_parse_argv (command, NULL, &argv, NULL)) {
+        char *path = find_command (argv[0]);
+        g_strfreev (argv);
 
-    if (path != NULL) {
-        g_free (path);
-        return TRUE;
+        if (path != NULL) {
+            g_free (path);
+            return TRUE;
+        }
     }
 
     return FALSE;

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
_______________________________________________
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits

Reply via email to