fix: add missing closedir in _get_max_cpuid_from_sysfs()
[lttng-ust.git] / src / common / smp.c
index 8c742028039a10395b099202a741f490bc72fe2d..88d66a40a3c0f049e34c46a290af11b4b5fea454 100644 (file)
@@ -73,6 +73,9 @@ int _get_max_cpuid_from_sysfs(const char *path)
                }
        }
 
+       if (closedir(cpudir))
+               PERROR("closedir");
+
        /*
         * If the max CPU id is out of bound, set it to -1 so it results in a
         * CPU num of 0.
This page took 0.02514 seconds and 4 git commands to generate.