From 2b3d9bba3d969ceed60ecf61a999ce856c8a6e49 Mon Sep 17 00:00:00 2001 From: fche Date: Mon, 28 Nov 2005 01:16:03 +0000 Subject: 2005-11-27 Frank Ch. Eigler * loc2c.c (location_from_address): Tolerate errors with NULL *input. --- loc2c.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'loc2c.c') diff --git a/loc2c.c b/loc2c.c index ec97f36e..3b6b28a2 100644 --- a/loc2c.c +++ b/loc2c.c @@ -579,13 +579,13 @@ location_from_address (struct obstack *pool, default: /* Shouldn't happen. */ case -1: - FAIL (*input, N_("dwarf_addrloclists (form %#x): %s"), - dwarf_whatform (fb_attr), dwarf_errmsg (-1)); + FAIL (loc, N_("dwarf_addrloclists (form %#x): %s"), + dwarf_whatform(fb_attr), dwarf_errmsg (-1)); return NULL; case 0: /* Shouldn't happen. */ fb_inaccessible: - FAIL (*input, N_("DW_AT_frame_base not accessible at this address")); + FAIL (loc, N_("DW_AT_frame_base not accessible at this address")); return NULL; } -- cgit