🐛 Fix missing va_end in UnwPrintf (#25027)

This commit is contained in:
Trivalik
2022-11-28 02:06:44 +01:00
committed by GitHub
parent 463f35e0f2
commit d4d1112ae8

View File

@@ -33,8 +33,9 @@
void UnwPrintf(const char *format, ...) {
va_list args;
va_start( args, format );
vprintf(format, args );
va_start(args, format);
vprintf(format, args);
va_end(args);
}
#endif