fix-uninitialized.patch 492 B

123456789101112131415161718
  1. --- a/libcpu/i386_disasm.c 2015-08-21 14:22:37.000000000 +0200
  2. +++ b/libcpu/i386_disasm.c 2015-11-20 06:30:59.250629957 +0100
  3. @@ -1,4 +1,4 @@
  4. -/* Disassembler for x86.
  5. +/* Disassembler for x86.
  6. Copyright (C) 2007, 2008, 2009, 2011 Red Hat, Inc.
  7. This file is part of elfutils.
  8. Written by Ulrich Drepper <drepper@redhat.com>, 2007.
  9. @@ -710,6 +710,7 @@
  10. case 'm':
  11. /* Mnemonic. */
  12. + str = mnebuf;
  13. if (unlikely (instrtab[cnt].mnemonic == MNE_INVALID))
  14. {