qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PULL 2/6] s390/dump: zero out padding bytes in notes secti


From: Christian Borntraeger
Subject: [Qemu-devel] [PULL 2/6] s390/dump: zero out padding bytes in notes sections
Date: Tue, 3 Sep 2013 09:58:33 +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 <address@hidden>
---
 target-s390x/arch_dump.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/target-s390x/arch_dump.c b/target-s390x/arch_dump.c
index 9d36116..5cbb53c 100644
--- a/target-s390x/arch_dump.c
+++ b/target-s390x/arch_dump.c
@@ -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));
-- 
1.8.3.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]