1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 18:20:43 +09:00

Everywhere: Fix format-vulnerabilities

Command used:
grep -Pirn '(out|warn)ln\((?!["\)]|format,|stderr,|stdout,|output, ")' \
     AK Kernel/ Tests/ Userland/
(Plus some manual reviewing.)

Let's pick ArgsParser as an example:
    outln(file, m_general_help);
This will fail at runtime if the general help happens to contain braces.

Even if this transformation turns out to be unnecessary in a place or
two, this way the code is "more obviously" correct.
This commit is contained in:
Ben Wiederhake 2021-09-09 17:06:15 +02:00 committed by Linus Groh
parent 7dfecbee44
commit 2e4ec891da
Notes: sideshowbarker 2024-07-18 04:16:34 +09:00
4 changed files with 4 additions and 4 deletions

View file

@ -191,7 +191,7 @@ int main()
sql_client->on_next_result = [&](int, Vector<String> const& row) {
StringBuilder builder;
builder.join(", ", row);
outln(builder.build());
outln("{}", builder.build());
};
sql_client->on_results_exhausted = [&](int, int total_rows) {