src/printf.c

changeset 1065
6eb7b54975ee
parent 926
8fdd8d78c14b
--- a/src/printf.c	Sun Dec 29 15:24:20 2024 +0100
+++ b/src/printf.c	Sun Dec 29 16:56:13 2024 +0100
@@ -69,10 +69,10 @@
     } else {
         int len = ret + 1;
         char *newbuf = malloc(len);
-        if (!newbuf) {
+        if (!newbuf) { // LCOV_EXCL_START
             va_end(ap2);
             return -1;
-        }
+        } // LCOV_EXCL_STOP
 
         ret = vsnprintf(newbuf, len, fmt, ap2);
         va_end(ap2);

mercurial