Fix: initialize live_timer to 0 for snapshot session
[lttng-tools.git] / src / bin / lttng-sessiond / cmd.c
index 860622d0065b9c3c80f22c32ee0b2d44b11f511d..020a8756a29d751960846512e32bb49ee4b53862 100644 (file)
@@ -1826,6 +1826,7 @@ static int _cmd_enable_event(struct ltt_session *session,
                                filter_copy = zmalloc(filter_size);
                                if (!filter_copy) {
                                        ret = LTTNG_ERR_NOMEM;
+                                       goto error;
                                }
                                memcpy(filter_copy, filter, filter_size);
 
@@ -2357,7 +2358,7 @@ int cmd_create_session_snapshot(char *name, struct lttng_uri *uris,
         * Create session in no output mode with URIs set to NULL. The uris we've
         * received are for a default snapshot output if one.
         */
-       ret = cmd_create_session_uri(name, NULL, 0, creds, -1);
+       ret = cmd_create_session_uri(name, NULL, 0, creds, 0);
        if (ret != LTTNG_OK) {
                goto error;
        }
This page took 0.024421 seconds and 4 git commands to generate.