Fix: lttng view.c missing strdup OOM check
[lttng-tools.git] / src / bin / lttng / commands / view.c
index c2a3c217076b029eca78145d1d7fe84ebed3a0d1..c0ff9d06046936650a3e921ecd92a5c2070d1632 100644 (file)
@@ -159,6 +159,9 @@ static char **alloc_argv_from_user_opts(char *opts, const char *trace_path)
        token = strtok(opts, " ");
        while (token != NULL) {
                argv[i] = strdup(token);
+               if (argv[i] == NULL) {
+                       goto error;
+               }
                token = strtok(NULL, " ");
                i++;
        }
This page took 0.023634 seconds and 4 git commands to generate.