Skip to content
Snippets Groups Projects
Commit cb8a8936 authored by George Kiagiadakis's avatar George Kiagiadakis
Browse files

lua/api: ensure the function name in the debug output is non-null

NULL crashes the journald writer
parent 98151fdb
No related branches found
No related tags found
No related merge requests found
......@@ -183,6 +183,7 @@ log_log (lua_State *L, GLogLevelFlags lvl)
message = luaL_checkstring (L, index);
sprintf (line_str, "%d", ar.currentline);
ar.name = ar.name ? ar.name : "chunk";
wp_log_structured_standard (G_LOG_DOMAIN, lvl,
ar.source, line_str, ar.name, type, instance, "%s", message);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment