mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 09:48:11 +00:00
UserspaceEmulator: Extra format arguments in MallocTracker, found by Coverity
This commit is contained in:
parent
5a3cc2da8b
commit
4ca493a86a
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue