From ea25bdad2ee1406d26518b41fc8141e6e09317bf Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 27 Oct 2005 19:36:53 +0000 Subject: fix use-after-free (#171912) --- src/initlog.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/initlog.c') diff --git a/src/initlog.c b/src/initlog.c index ae110675..20316095 100644 --- a/src/initlog.c +++ b/src/initlog.c @@ -249,7 +249,10 @@ int logLine(struct logInfo *logEnt) { ) { DDEBUG("starting daemon failed, pooling entry %d\n",logEntries); logData=realloc(logData,(logEntries+1)*sizeof(struct logInfo)); - logData[logEntries]= (*logEnt); + logData[logEntries].fac = logEnt->fac; + logData[logEntries].pri = logEnt->pri; + logData[logEntries].cmd = strdup(logEnt->cmd); + logData[logEntries].line = strdup(logEnt->line); logEntries++; } else { if (logEntries>0) { -- cgit