2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 22:15:20 +00:00

initialize uninitialized variable

This commit is contained in:
Bob Halley
1999-11-01 22:57:30 +00:00
parent 73af6575e0
commit 89c250649e

View File

@@ -91,7 +91,7 @@ isc_print_vsnprintf(char *str, size_t size, const char *format, va_list ap) {
dot = neg = space = plus = left = zero = alt = h = l = q = 0;
width = precision = 0;
head = "";
length = pad = zeropad;
length = pad = zeropad = 0;
do {
if (*format == '#') {