Browse Source

Fix execlp call (ggml/689)

NULL can be an integer constant expression with the value zero, in this case the behavior would be undefined because of an incorrect type being passed to the variable arguments.
Halalaluyafail3 2 years ago
parent
commit
c910e3c28a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ggml.c

+ 1 - 1
ggml.c

@@ -132,7 +132,7 @@ void ggml_print_backtrace(void) {
             "-ex", "bt -frame-info source-and-location",
             "-ex", "bt -frame-info source-and-location",
             "-ex", "detach",
             "-ex", "detach",
             "-ex", "quit",
             "-ex", "quit",
-            NULL);
+            (char *) NULL);
     } else {
     } else {
         waitpid(pid, NULL, 0);
         waitpid(pid, NULL, 0);
     }
     }