From aa7efcace1490586c24382eb2cf7e8928f0c9c40 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 27 Oct 2005 19:38:39 +0000 Subject: fix use-after-free (#171198) --- src/initlog.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/initlog.c b/src/initlog.c index 74f1a1f1..be98ebe0 100644 --- a/src/initlog.c +++ b/src/initlog.c @@ -215,7 +215,10 @@ int logLine(struct logInfo *logEnt) { if ((stat(_PATH_LOG,&statbuf)==-1) || trySocket()) { 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 v1.2.1