1
0
Fork 0

Add missed va_end call

timestamps
dump_stack() 2019-08-17 09:08:58 +00:00
parent 986a6f55e0
commit 927fcddebf
Signed by: dump_stack
GPG Key ID: BE44DA8C062D87DC
1 changed files with 1 additions and 0 deletions

View File

@ -317,6 +317,7 @@ void redact(const char *fmt, ...) {
va_start(args, fmt);
if(doredact) {
fprintf(stdout, "[!] ( ( R E D A C T E D ) )\n");
va_end(args);
return;
}
fprintf(stdout, "[*] ");