We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2eeccee commit 816054fCopy full SHA for 816054f
fs/bcachefs/printbuf.c
@@ -56,6 +56,7 @@ void bch2_prt_vprintf(struct printbuf *out, const char *fmt, va_list args)
56
57
va_copy(args2, args);
58
len = vsnprintf(out->buf + out->pos, printbuf_remaining(out), fmt, args2);
59
+ va_end(args2);
60
} while (len + 1 >= printbuf_remaining(out) &&
61
!bch2_printbuf_make_room(out, len + 1));
62
0 commit comments