From 7a3c21c92f0369b5d18c5c76dc4ba61dbb1f8dd2 Mon Sep 17 00:00:00 2001 From: Michael Snyder Date: Thu, 2 Aug 2007 00:40:02 +0000 Subject: 2007-08-01 Michael Snyder * i386-dis.c (print_insn): Guard against NULL. --- opcodes/ChangeLog | 4 ++++ opcodes/i386-dis.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) (limited to 'opcodes') 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) { -- cgit v1.1