Fix: double unlock of metadata mutex on error
[lttng-tools.git] / src / common / ust-consumer / ust-consumer.c
index 5c7b00317dabb824f378858bb05234347eec424e..7bbfa60a26fc6f90aed740869b0773994cd86ca2 100644 (file)
@@ -2273,10 +2273,10 @@ int lttng_ustconsumer_sync_metadata(struct lttng_consumer_local_data *ctx,
         * because we locked the metadata thread.
         */
        ret = lttng_ustconsumer_request_metadata(ctx, metadata->chan, 0, 0);
+       pthread_mutex_lock(&metadata->lock);
        if (ret < 0) {
                goto end;
        }
-       pthread_mutex_lock(&metadata->lock);
 
        ret = commit_one_metadata_packet(metadata);
        if (ret <= 0) {
This page took 0.023324 seconds and 4 git commands to generate.