Revert "Assert that a valid clean-up pipe exists on ht_cleanup_push"
[lttng-tools.git] / src / bin / lttng-sessiond / utils.c
index d676198208fe638c2efb8f33b62f023ee39958ee..f77a21ddb153a5ebdd88815af3e9850e37736151 100644 (file)
@@ -55,7 +55,8 @@ void ht_cleanup_push(struct lttng_ht *ht)
        if (!ht) {
                return;
        }
-       assert(fd >= 0);
+       if (fd < 0)
+               return;
        ret = lttng_write(fd, &ht, sizeof(ht));
        if (ret < sizeof(ht)) {
                PERROR("write ht cleanup pipe %d", fd);
This page took 0.024724 seconds and 5 git commands to generate.