Fix: Possible passing of NULL pointer to memcpy()
[lttng-tools.git] / src / bin / lttng-sessiond / cmd.c
index 860622d0065b9c3c80f22c32ee0b2d44b11f511d..6237d673efca6b1abd5c778949c8863be6fc72ef 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);
 
This page took 0.025692 seconds and 5 git commands to generate.