From a8bc7b569a456c95a5f0235d5f144f767c75e02b Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Fri, 24 May 2002 19:41:45 +0000 Subject: [PATCH] * dwarf2read.c (free_line_header): Use xfree, not free. --- gdb/ChangeLog | 4 ++++ gdb/dwarf2read.c | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 9e706665cc..d2ffd4b645 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2002-05-24 Jim Blandy + + * dwarf2read.c (free_line_header): Use xfree, not free. + 2002-05-24 Jason Thorpe * config/djgpp/fnchange.lst: Add alphabsd-nat.c, diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c index d702d0077f..6c2b542f63 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -4083,18 +4083,18 @@ static void free_line_header (struct line_header *lh) { if (lh->standard_opcode_lengths) - free (lh->standard_opcode_lengths); + xfree (lh->standard_opcode_lengths); /* Remember that all the lh->file_names[i].name pointers are pointers into debug_line_buffer, and don't need to be freed. */ if (lh->file_names) - free (lh->file_names); + xfree (lh->file_names); /* Similarly for the include directory names. */ if (lh->include_dirs) - free (lh->include_dirs); + xfree (lh->include_dirs); - free (lh); + xfree (lh); }