mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 06:07:34 +00:00
Kernel: CoreDump::write_program_headers: set NOTE p_memsz to p_filesz
This commit is contained in:
parent
518ba73dcb
commit
fae2304c67
1 changed files with 1 additions and 1 deletions
|
@ -159,7 +159,7 @@ KResult CoreDump::write_program_headers(size_t notes_size)
|
|||
notes_pheader.p_vaddr = 0;
|
||||
notes_pheader.p_paddr = 0;
|
||||
notes_pheader.p_filesz = notes_size;
|
||||
notes_pheader.p_memsz = 0;
|
||||
notes_pheader.p_memsz = notes_size;
|
||||
notes_pheader.p_align = 0;
|
||||
notes_pheader.p_flags = 0;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue