DescriptionFix a bug where we reused a va_list across multiple calls.
The problem is that va_arg modifies the va_list so that the next call to va_arg
returns the next argument. It looks like this code had attempted to not reuse
the list by making a copy, but it passed the original instead of the copy.
Patch Set 1 #Patch Set 2 : comment #
Total comments: 1
Messages
Total messages: 4 (0 generated)
|