chiark
/
gitweb
/
~mdw
/
secnet
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
possible security fix: do not call slilog with intended message as format string
[secnet]
/
log.c
diff --git
a/log.c
b/log.c
index 32aed704b06e20e595ef366661426103fac6342f..7fc16c93d517bf172f6dbb4f333af0df2144446c 100644
(file)
--- a/
log.c
+++ b/
log.c
@@
-28,7
+28,7
@@
static void vMessage(uint32_t class, const char *message, va_list args)
/* Each line is sent separately */
while ((nlp=strchr(buff,'\n'))) {
*nlp=0;
- slilog(system_log,class,buff);
+ slilog(system_log,class,
"%s",
buff);
memmove(buff,nlp+1,strlen(nlp+1)+1);
}
} else {