util.format: Ensure sanitation of strings passed to wrong format

Ie. log("debug", "%d", "\1\2\3") should not result in garbage.

Also optimizing for the common case of ASCII string passed to %s and
early returns everywhere.

Returning nil from a gsub callback keeps the original substring.
This commit is contained in:
Kim Alvefur 2021-12-11 13:30:34 +01:00
parent d4c1451794
commit 1eca4e8870
2 changed files with 38 additions and 21 deletions

View file

@ -18,6 +18,7 @@ describe("util.format", function()
it("escapes ascii control stuff", function ()
assert.equal("", format("%s", "\1"));
assert.equal("[␁]", format("%d", "\1"));
end);
it("escapes invalid UTF-8", function ()