Fix a possible stack corruption
[project/luci.git] / libs / nixio / src / syslog.c
index 081e8369ff8ee393f948d5392a449a8c1b5d6ebe..b3d87e2061bc19db5489a1f278e7628920c2a185 100644 (file)
@@ -82,7 +82,7 @@ static int nixio__syslogmasg(lua_State *L, int dolog) {
 
        if (dolog) {
                const char *msg = luaL_checkstring(L, 2);
-               syslog(priority, msg);
+               syslog(priority, "%s", msg);
        } else {
                setlogmask(LOG_UPTO(priority));
        }