mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
d4c1451794
commit
1eca4e8870
2 changed files with 38 additions and 21 deletions
|
@ -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 ()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue