Fix: utils: unhandled close return value
[lttng-tools.git] / src / common / utils.c
index 682084c0f67d0cf32eb39bb2c9e76a5975a0f559..bc4f6112f9db4907e18dd9758f2a39105ca0a138 100644 (file)
@@ -240,7 +240,10 @@ int utils_create_pid_file(pid_t pid, const char *filepath)
        if (fp == NULL) {
                PERROR("fdopen file %s", filepath);
                ret = -1;
-               close(fd);
+               if (close(fd)) {
+                       PERROR("Failed to close `%s` file descriptor while handling fdopen error", filepath);
+               }
+
                goto error;
        }
 
This page took 0.022821 seconds and 4 git commands to generate.