Fix: hold consumer socket lock for consumer_send_msg
[lttng-tools.git] / src / bin / lttng-sessiond / ust-consumer.c
index d8d6c329f5d3334555f05e0418a699c46cec6dce..b9865a0f015b76e0abb5ebcedfd8b92238b47465 100644 (file)
@@ -513,7 +513,9 @@ int ust_consumer_metadata_request(struct consumer_socket *socket)
 
                        memset(&msg, 0, sizeof(msg));
                        msg.cmd_type = LTTNG_ERR_UND;
+                       pthread_mutex_lock(socket->lock);
                        (void) consumer_send_msg(socket, &msg);
+                       pthread_mutex_unlock(socket->lock);
                        /*
                         * This is possible since the session might have been destroyed
                         * during a consumer metadata request. So here, return gracefully
This page took 0.023473 seconds and 4 git commands to generate.