diff options
author | René Scharfe <l.s.r@web.de> | 2016-09-15 20:31:00 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-09-15 12:23:38 -0700 |
commit | a22ae753cb297cb8a1e3ae950ae4415190cd51d5 (patch) | |
tree | fca5ed773d854629968db249065e162d9ad61682 /contrib/coccinelle/strbuf.cocci | |
parent | add coccicheck make target (diff) | |
download | tgif-a22ae753cb297cb8a1e3ae950ae4415190cd51d5.tar.xz |
use strbuf_addstr() for adding constant strings to a strbuf, part 2
Replace uses of strbuf_addf() for adding strings with more lightweight
strbuf_addstr() calls. This makes the intent clearer and avoids
potential issues with printf format specifiers.
02962d36845b89145cd69f8bc65e015d78ae3434 already converted six cases,
this patch covers eleven more.
A semantic patch for Coccinelle is included for easier checking for
new cases that might be introduced in the future.
Signed-off-by: Rene Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/coccinelle/strbuf.cocci')
-rw-r--r-- | contrib/coccinelle/strbuf.cocci | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/contrib/coccinelle/strbuf.cocci b/contrib/coccinelle/strbuf.cocci new file mode 100644 index 0000000000..7932d48cdf --- /dev/null +++ b/contrib/coccinelle/strbuf.cocci @@ -0,0 +1,5 @@ +@@ +expression E1, E2; +@@ +- strbuf_addf(E1, E2); ++ strbuf_addstr(E1, E2); |