From a576156e5bf9de147efe2c76af1ee29f5efd773e Mon Sep 17 00:00:00 2001 From: "Rafael G. Martins" Date: Mon, 9 Sep 2019 20:44:18 +0200 Subject: common: prevent stdarg errors when format is NULL --- src/common/error.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/common/error.c') diff --git a/src/common/error.c b/src/common/error.c index 03695e7..caf47c3 100644 --- a/src/common/error.c +++ b/src/common/error.c @@ -26,6 +26,8 @@ bc_error_new(bc_error_type_t type, const char *msg) bc_error_t* bc_error_new_printf(bc_error_type_t type, const char *format, ...) { + if (format == NULL) + return bc_error_new(type, ""); va_list ap; va_start(ap, format); char *tmp = bc_strdup_vprintf(format, ap); @@ -40,6 +42,8 @@ bc_error_t* bc_error_parser(bc_error_type_t type, const char *src, size_t src_len, size_t current, const char *format, ...) { + if (format == NULL) + return bc_error_new(type, ""); va_list ap; va_start(ap, format); char *msg = bc_strdup_vprintf(format, ap); -- cgit v1.2.3-18-g5258