sessiond: fix: print_escaped_ctf_string mishandles empty string
[lttng-tools.git] / src / bin / lttng-sessiond / thread.c
index 7e16b69ed9ca5ddb113875b87cb6fa7be64c48e0..c685442ba036e55ec24c413375d5409e50f56daf 100644 (file)
@@ -88,7 +88,7 @@ struct lttng_thread *lttng_thread_create(const char *name,
 
        thread = zmalloc(sizeof(*thread));
        if (!thread) {
-               goto error;
+               goto error_alloc;
        }
 
        urcu_ref_init(&thread->ref);
@@ -127,9 +127,9 @@ error_pthread_create:
        /* Release list reference. */
        lttng_thread_put(thread);
        pthread_mutex_unlock(&thread_list.lock);
-error:
        /* Release initial reference. */
        lttng_thread_put(thread);
+error_alloc:
        return NULL;
 }
 
@@ -169,6 +169,7 @@ bool _lttng_thread_shutdown(struct lttng_thread *thread)
        if (ret) {
                PERROR("Failed to join \"%s\" thread", thread->name);
                result = false;
+               goto end;
        }
        /* Release the list's reference to the thread. */
        cds_list_del(&thread->node);
This page took 0.023523 seconds and 4 git commands to generate.