Fix: statedump: check task_active_pid_ns return value for NULL
[lttng-modules.git] / lttng-statedump-impl.c
index 066b9612c0ee5f3884f023c1211eef17c58ad305..043bbaa1a8eaee4b91655f8649ed2e4fccfb8cc5 100644 (file)
@@ -426,7 +426,7 @@ void lttng_statedump_process_ns(struct lttng_session *session,
        pid_ns = task_active_pid_ns(p);
        do {
                trace_lttng_statedump_process_pid_ns(session, p, pid_ns);
-               pid_ns = pid_ns->parent;
+               pid_ns = pid_ns ? pid_ns->parent : NULL;
        } while (pid_ns);
 
 
This page took 0.023812 seconds and 4 git commands to generate.