shm: check error value of shm_unlink
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Sun, 28 Aug 2011 16:20:25 +0000 (12:20 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Sun, 28 Aug 2011 16:20:25 +0000 (12:20 -0400)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
libringbuffer/shm.c

index fda4a319c52982436a92ce5bb600d12c5b1097a7..563903877f5eb59a62409ce32662a8bd6f7600bd 100644 (file)
@@ -74,7 +74,11 @@ struct shm_object *shm_object_table_append(struct shm_object_table *table,
         * crashes between shm_open and the following shm_unlink).
         */
        do {
-               (void) shm_unlink("ust-shm-tmp");
+               ret = shm_unlink("ust-shm-tmp");
+               if (ret < 0 && errno != ENOENT) {
+                       PERROR("shm_unlink");
+                       goto error_shm_unlink;
+               }
                shmfd = shm_open("ust-shm-tmp",
                                 O_CREAT | O_EXCL | O_RDWR, 0700);
        } while (shmfd < 0 && errno == EEXIST);
@@ -82,7 +86,11 @@ struct shm_object *shm_object_table_append(struct shm_object_table *table,
                PERROR("shm_open");
                goto error_shm_open;
        }
-       (void) shm_unlink("ust-shm-tmp");
+       ret = shm_unlink("ust-shm-tmp");
+       if (ret < 0 && errno != ENOENT) {
+               PERROR("shm_unlink");
+               goto error_shm_release;
+       }
        ret = ftruncate(shmfd, memory_map_size);
        if (ret) {
                PERROR("ftruncate");
@@ -106,11 +114,13 @@ struct shm_object *shm_object_table_append(struct shm_object_table *table,
 
 error_mmap:
 error_ftruncate:
+error_shm_release:
        ret = close(shmfd);
        if (ret) {
                PERROR("close");
                assert(0);
        }
+error_shm_unlink:
 error_shm_open:
 error_fcntl:
        for (i = 0; i < 2; i++) {
This page took 0.027348 seconds and 4 git commands to generate.