naccyde / rpms / systemd

Forked from rpms/systemd a year ago
Clone
2aacef
From c103428e24f002e495412a5f9a0b919f4b92c2b7 Mon Sep 17 00:00:00 2001
2aacef
From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= <zbyszek@in.waw.pl>
2aacef
Date: Mon, 21 Nov 2022 20:06:55 +0100
2aacef
Subject: [PATCH] basic/strv: check printf arguments to strv_extendf()
2aacef
2aacef
The second argument to _printf_() specifies where the arguments start. We need to
2aacef
use 0 in two cases: when the args in a va_list and can't be checked, and with journald
2aacef
logging functions which accept multiple format strings with multiple argument sets,
2aacef
which the _printf_ checker does not understand. But strv_extendf() can be checked.
2aacef
2aacef
(cherry picked from commit 400102ec91aa3404848a04f49a43d49e1a181708)
2aacef
2aacef
Related: #2138081
2aacef
---
2aacef
 src/basic/strv.h | 2 +-
2aacef
 1 file changed, 1 insertion(+), 1 deletion(-)
2aacef
2aacef
diff --git a/src/basic/strv.h b/src/basic/strv.h
2aacef
index d6f5ac6ba5..6c9fa47943 100644
2aacef
--- a/src/basic/strv.h
2aacef
+++ b/src/basic/strv.h
2aacef
@@ -45,7 +45,7 @@ static inline int strv_extend(char ***l, const char *value) {
2aacef
         return strv_extend_with_size(l, NULL, value);
2aacef
 }
2aacef
 
2aacef
-int strv_extendf(char ***l, const char *format, ...) _printf_(2,0);
2aacef
+int strv_extendf(char ***l, const char *format, ...) _printf_(2,3);
2aacef
 int strv_extend_front(char ***l, const char *value);
2aacef
 
2aacef
 int strv_push_with_size(char ***l, size_t *n, char *value);