]> git.proxmox.com Git - qemu.git/commitdiff
s390/dump: zero out padding bytes in notes sections
authorChristian Borntraeger <borntraeger@de.ibm.com>
Thu, 29 Aug 2013 10:40:25 +0000 (12:40 +0200)
committerChristian Borntraeger <borntraeger@de.ibm.com>
Fri, 20 Sep 2013 10:46:53 +0000 (12:46 +0200)
The prstatus of an s390x dump contains several padding areas. Zero out
these bytes to make reading the notes section easier with a hexdump.

Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
target-s390x/arch_dump.c

index 9d36116242c1e0b5b87352cc62474b9536853b28..5cbb53ca2ec3e814e8ad6efeb6ff9af359f20a32 100644 (file)
@@ -151,6 +151,7 @@ static int s390x_write_all_elf64_notes(const char *note_name,
     int ret = -1;
 
     for (nf = note_func; nf->note_contents_func; nf++) {
+        memset(&note, 0, sizeof(note));
         note.hdr.n_namesz = cpu_to_be32(sizeof(note.name));
         note.hdr.n_descsz = cpu_to_be32(nf->contents_size);
         strncpy(note.name, note_name, sizeof(note.name));