From: Michael Snyder Date: Thu, 2 Aug 2007 00:40:02 +0000 (+0000) Subject: 2007-08-01 Michael Snyder X-Git-Tag: binutils-2_18-branchpoint~28 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7a3c21c92f0369b5d18c5c76dc4ba61dbb1f8dd2;p=external%2Fbinutils.git 2007-08-01 Michael Snyder * i386-dis.c (print_insn): Guard against NULL. --- diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 671616f..48d08df 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,7 @@ +2007-08-01 Michael Snyder + + * i386-dis.c (print_insn): Guard against NULL. + 2007-07-29 H.J. Lu PR binutils/4834 diff --git a/opcodes/i386-dis.c b/opcodes/i386-dis.c index 4e036f7..4058dce 100644 --- a/opcodes/i386-dis.c +++ b/opcodes/i386-dis.c @@ -3782,7 +3782,7 @@ print_insn (bfd_vma pc, disassemble_info *info) } } - if (putop (dp->name, sizeflag) == 0) + if (dp->name != NULL && putop (dp->name, sizeflag) == 0) { for (i = 0; i < MAX_OPERANDS; ++i) {