🐛 Fix missing va_end in UnwPrintf (#25027)
This commit is contained in:
parent
12017887f4
commit
d2ece1e713
@ -33,8 +33,9 @@
|
|||||||
void UnwPrintf(const char *format, ...) {
|
void UnwPrintf(const char *format, ...) {
|
||||||
va_list args;
|
va_list args;
|
||||||
|
|
||||||
va_start( args, format );
|
va_start(args, format);
|
||||||
vprintf(format, args );
|
vprintf(format, args);
|
||||||
|
va_end(args);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user