Fix: don't destroy the sockets if the snapshot was successful
authorJulien Desfossez <jdesfossez@efficios.com>
Tue, 9 Dec 2014 21:38:05 +0000 (16:38 -0500)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Wed, 10 Dec 2014 20:49:23 +0000 (15:49 -0500)
Missing a goto to skip the error condition that was destroying the
relayd sockets even if a snapshot was successful. We want to keep them
open to reuse them for the next snapshots.

Signed-off-by: Julien Desfossez <jdesfossez@efficios.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
src/bin/lttng-sessiond/cmd.c

index 11ff9b489dd2d0be182b14f6743b2807dc4285b8..58506b2b225e5e0e306d9fad8682013e52a0723d 100644 (file)
@@ -2979,11 +2979,13 @@ static int record_kernel_snapshot(struct ltt_kernel_session *ksess,
        }
 
        ret = LTTNG_OK;
+       goto end;
 
 error_snapshot:
        /* Clean up copied sockets so this output can use some other later on. */
        consumer_destroy_output_sockets(output->consumer);
 error:
+end:
        return ret;
 }
 
This page took 0.027641 seconds and 5 git commands to generate.