Update error check for root handle
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Tue, 27 Sep 2011 18:03:12 +0000 (14:03 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Tue, 27 Sep 2011 18:03:12 +0000 (14:03 -0400)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
libust/lttng-ust-comm.c

index 858e92c9b513c3bfb79a844e37d1cc315c1b968b..6bf9e2b5b350ebb2936507a054a1236c578f9b7c 100644 (file)
@@ -641,7 +641,7 @@ restart:
         */
        if (sock_info->root_handle == -1) {
                ret = lttng_abi_create_root_handle();
-               if (ret) {
+               if (ret < 0) {
                        ERR("Error creating root handle");
                        ust_unlock();
                        goto quit;
This page took 0.023996 seconds and 4 git commands to generate.