From aac7f4eaf285cfa05a09ce0750f3f828ba0b0f01 Mon Sep 17 00:00:00 2001 From: Andrew Cagney Date: Sun, 2 Dec 2001 22:38:23 +0000 Subject: mfree() -> xmfree(). --- gdb/source.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gdb/source.c') diff --git a/gdb/source.c b/gdb/source.c index afdc025..d04f886 100644 --- a/gdb/source.c +++ b/gdb/source.c @@ -241,12 +241,12 @@ forget_cached_source_info (void) { if (s->line_charpos != NULL) { - mfree (objfile->md, s->line_charpos); + xmfree (objfile->md, s->line_charpos); s->line_charpos = NULL; } if (s->fullname != NULL) { - mfree (objfile->md, s->fullname); + xmfree (objfile->md, s->fullname); s->fullname = NULL; } } @@ -682,7 +682,7 @@ open_source_file (struct symtab *s) if (result >= 0) return result; /* Didn't work -- free old one, try again. */ - mfree (s->objfile->md, s->fullname); + xmfree (s->objfile->md, s->fullname); s->fullname = NULL; } -- cgit v1.1