summaryrefslogtreecommitdiffstats
path: root/usr.bin/sed
diff options
context:
space:
mode:
authorjoerg <joerg@FreeBSD.org>1995-04-05 22:55:27 +0000
committerjoerg <joerg@FreeBSD.org>1995-04-05 22:55:27 +0000
commitcb8a3fb878ab3acde707fb837723c14acbd4b28c (patch)
tree13d645c40f795c05cdbe538780f69bb7c42f31e0 /usr.bin/sed
parent1e61d4f9a3ec0b9f3a1ec6fa198e61df2b18a838 (diff)
downloadFreeBSD-src-cb8a3fb878ab3acde707fb837723c14acbd4b28c.zip
FreeBSD-src-cb8a3fb878ab3acde707fb837723c14acbd4b28c.tar.gz
Sed dumps core when linked with some coalescing malloc because it
doesn't initialize malloced structure. Submitted by: vode@hut.fi
Diffstat (limited to 'usr.bin/sed')
-rw-r--r--usr.bin/sed/compile.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/usr.bin/sed/compile.c b/usr.bin/sed/compile.c
index 944a226..b958ff8 100644
--- a/usr.bin/sed/compile.c
+++ b/usr.bin/sed/compile.c
@@ -217,6 +217,8 @@ nonsel: /* Now parse the command */
if (!*p)
p = NULL;
cmd2 = xmalloc(sizeof(struct s_command));
+ cmd2->nonsel = cmd2->inrange = 0;
+ cmd2->a1 = cmd2->a2 = NULL;
cmd2->code = '}';
*compile_stream("}", &cmd->u.c, p) = cmd2;
cmd->next = cmd2;
OpenPOWER on IntegriCloud