From: Mathieu Desnoyers Date: Tue, 24 Sep 2013 18:35:59 +0000 (-0400) Subject: Fix: sessiond poll thread normal error path should return 0 X-Git-Tag: v2.4.0-rc1~122 X-Git-Url: https://git.liburcu.org/?p=lttng-tools.git;a=commitdiff_plain;h=41ba603553a90bde7c47eb10098224bde504d571 Fix: sessiond poll thread normal error path should return 0 Signed-off-by: Mathieu Desnoyers --- diff --git a/src/common/consumer.c b/src/common/consumer.c index 2420d110b..892c841ba 100644 --- a/src/common/consumer.c +++ b/src/common/consumer.c @@ -3008,6 +3008,7 @@ void *consumer_thread_sessiond_poll(void *data) * ERR() here. */ DBG("Communication interrupted on command socket"); + err = 0; goto end; } if (consumer_quit) {