]> Git Repo - qemu.git/blobdiff - dump.c
dump: fix note_name_equal()
[qemu.git] / dump.c
diff --git a/dump.c b/dump.c
index d4a8c942eb8f07b67b38c0a52b1acf77e26c8c3a..e9dfed060a5cc477d146f2324747e1188cf08133 100644 (file)
--- a/dump.c
+++ b/dump.c
@@ -788,12 +788,7 @@ static bool note_name_equal(DumpState *s,
     get_note_sizes(s, note, &head_size, &name_size, NULL);
     head_size = ROUND_UP(head_size, 4);
 
-    if (name_size != len ||
-        memcmp(note + head_size, "VMCOREINFO", len)) {
-        return false;
-    }
-
-    return true;
+    return name_size == len && memcmp(note + head_size, name, len) == 0;
 }
 
 /* write common header, sub header and elf note to vmcore */
This page took 0.022443 seconds and 4 git commands to generate.