Fix: add missing strdup OOM check
[lttng-tools.git] / src / bin / lttng-relayd / health-relayd.c
index 8a5cbdfcb550f86a2010586e6eed924d19232861..8194c3e4bfba9525c878116da96f2928bec2bc9c 100644 (file)
@@ -160,6 +160,10 @@ int setup_health_path(void)
 
        if (is_root) {
                rundir = strdup(DEFAULT_LTTNG_RUNDIR);
+               if (!rundir) {
+                       ret = -ENOMEM;
+                       goto end;
+               }
        } else {
                /*
                 * Create rundir from home path. This will create something like
This page took 0.024848 seconds and 4 git commands to generate.