Assert that a valid clean-up pipe exists on ht_cleanup_push
authorJérémie Galarneau <jeremie.galarneau@efficios.com>
Tue, 14 Jun 2016 16:29:24 +0000 (12:29 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Tue, 14 Jun 2016 16:29:24 +0000 (12:29 -0400)
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
src/bin/lttng-sessiond/utils.c

index f77a21ddb153a5ebdd88815af3e9850e37736151..d676198208fe638c2efb8f33b62f023ee39958ee 100644 (file)
@@ -55,8 +55,7 @@ void ht_cleanup_push(struct lttng_ht *ht)
        if (!ht) {
                return;
        }
-       if (fd < 0)
-               return;
+       assert(fd >= 0);
        ret = lttng_write(fd, &ht, sizeof(ht));
        if (ret < sizeof(ht)) {
                PERROR("write ht cleanup pipe %d", fd);
This page took 0.025163 seconds and 4 git commands to generate.