Fix: remove uninitialised value
[lttng-ust.git] / liblttng-ust / lttng-ust-comm.c
index 0b8be9276daf0761f28e6c882198e79ee295cab9..30dd161994cf637f2aa474bec91aab8d88379c2e 100644 (file)
@@ -877,12 +877,13 @@ int handle_message(struct sock_info *sock_info,
        {
                /* Receive shm_fd, wakeup_fd */
                ret = ustcomm_recv_stream_from_sessiond(sock,
-                       &lum->u.stream.len,
+                       NULL,
                        &args.stream.shm_fd,
                        &args.stream.wakeup_fd);
                if (ret) {
                        goto error;
                }
+
                if (ops->cmd)
                        ret = ops->cmd(lum->handle, lum->cmd,
                                        (unsigned long) &lum->u,
This page took 0.023377 seconds and 4 git commands to generate.