diff options
Diffstat (limited to 'experimental/elfutils/fix-uninitialized.patch')
-rw-r--r-- | experimental/elfutils/fix-uninitialized.patch | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/experimental/elfutils/fix-uninitialized.patch b/experimental/elfutils/fix-uninitialized.patch new file mode 100644 index 000000000..5bc174c86 --- /dev/null +++ b/experimental/elfutils/fix-uninitialized.patch @@ -0,0 +1,10 @@ +--- a/libcpu/i386_disasm.c 2015-08-21 14:22:37.000000000 +0200 ++++ b/libcpu/i386_disasm.c 2015-11-20 06:30:59.250629957 +0100 +@@ -710,6 +710,7 @@ + + case 'm': + /* Mnemonic. */ ++ str = mnebuf; + + if (unlikely (instrtab[cnt].mnemonic == MNE_INVALID)) + { |