Revert "lttng: fix: out-of-bounds copy of original 'view' command arguments"
authorJérémie Galarneau <jeremie.galarneau@efficios.com>
Thu, 19 Sep 2019 18:18:50 +0000 (14:18 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Thu, 19 Sep 2019 18:33:21 +0000 (14:33 -0400)
This reverts commit fc1465822a1075d98160bb74ae8e974ac8c010a8 as it
broke the 'lttng view' command on live sessions. The original commit
was meant to fix a warning, but it was (evidently) not an appropriate
change.

Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
src/bin/lttng/commands/view.c

index 237ea4a15675d775150ef17d3147124398fb11de..0325e505c505fab3dab2bc666fa7caec40822aa4 100644 (file)
@@ -188,7 +188,7 @@ static char **alloc_argv_from_local_opts(const char **opts, size_t opts_len,
                goto error;
        }
 
-       memcpy(argv, opts, opts_len);
+       memcpy(argv, opts, size);
 
        if (session_live_mode) {
                argv[opts_len] = "-i";
This page took 0.026651 seconds and 5 git commands to generate.