From f62a42d0dc1ee3f329ea6be9c4b3a3d8848e46f5 Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Sat, 24 Jan 1998 00:44:53 +0000 Subject: [PATCH] * config/tc-txvu.c (assemble_insn): Initialize errmsg = NULL before calling insert routine. --- gas/config/tc-txvu.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gas/config/tc-txvu.c b/gas/config/tc-txvu.c index 502f28a..26d4f35 100644 --- a/gas/config/tc-txvu.c +++ b/gas/config/tc-txvu.c @@ -234,6 +234,7 @@ assemble_insn (str, lower_p, buf) { if (operand->insert) { + errmsg = NULL; insn = (*operand->insert) (insn, operand, mods, 0, &errmsg); /* If we get an error, go on to try the next insn. */ if (errmsg) @@ -768,9 +769,7 @@ txvu_insert_operand (insn, operand, mods, val, file, line) if (operand->insert) { - const char *errmsg; - - errmsg = NULL; + const char *errmsg = NULL; insn = (*operand->insert) (insn, operand, mods, (long) val, &errmsg); if (errmsg != (const char *) NULL) as_warn (errmsg); -- 2.7.4