UserspaceEmulator: Extra format arguments in MallocTracker, found by Coverity

This commit is contained in:
Brian Gianforcaro 2020-08-16 17:56:33 -07:00 committed by Andreas Kling
parent 5a3cc2da8b
commit 4ca493a86a
Notes: sideshowbarker 2024-07-19 03:30:40 +09:00

View file

@ -138,7 +138,7 @@ void MallocTracer::audit_read(FlatPtr address, size_t size)
Emulator::the().dump_backtrace();
report("==%d== Address is %zu byte(s) into block of size %zu, allocated at:\n", getpid(), offset_into_mallocation, mallocation->size);
Emulator::the().dump_backtrace(mallocation->malloc_backtrace);
report("==%d== Later freed at:\n", getpid(), offset_into_mallocation, mallocation->size);
report("==%d== Later freed at:\n", getpid());
Emulator::the().dump_backtrace(mallocation->free_backtrace);
return;
}
@ -173,7 +173,7 @@ void MallocTracer::audit_write(FlatPtr address, size_t size)
Emulator::the().dump_backtrace();
report("==%d== Address is %zu byte(s) into block of size %zu, allocated at:\n", getpid(), offset_into_mallocation, mallocation->size);
Emulator::the().dump_backtrace(mallocation->malloc_backtrace);
report("==%d== Later freed at:\n", getpid(), offset_into_mallocation, mallocation->size);
report("==%d== Later freed at:\n", getpid());
Emulator::the().dump_backtrace(mallocation->free_backtrace);
return;
}