From adb1c7dcfe14132f2a5e0947d1af3eb50c751327 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Mon, 2 Jan 2023 16:59:40 +0100 Subject: xxd: fix use of non-initialized data Signed-off-by: Denys Vlasenko --- util-linux/hexdump_xxd.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'util-linux') diff --git a/util-linux/hexdump_xxd.c b/util-linux/hexdump_xxd.c index 45391b565..b5942899e 100644 --- a/util-linux/hexdump_xxd.c +++ b/util-linux/hexdump_xxd.c @@ -229,7 +229,8 @@ int xxd_main(int argc UNUSED_PARAM, char **argv) { char buf[80]; dumper_t *dumper; - char *opt_l, *opt_s, *opt_o; + char *opt_l, *opt_o; + char *opt_s = NULL; unsigned bytes = 2; unsigned cols = 0; unsigned opt; -- cgit v1.2.1