summaryrefslogtreecommitdiff
path: root/gdb/dve3900-rom.c
diff options
context:
space:
mode:
authorKevin Buettner <kevinb@redhat.com>2000-12-15 01:01:51 +0000
committerKevin Buettner <kevinb@redhat.com>2000-12-15 01:01:51 +0000
commitb8c9b27d1e133d46199734ca1f047af8bb2d3314 (patch)
tree1aa002791f0e97bfc48c64222199e6d9f9e5eb53 /gdb/dve3900-rom.c
parent6fa957a9b9408297206fb88e7c773931760f0528 (diff)
downloadbinutils-gdb-b8c9b27d1e133d46199734ca1f047af8bb2d3314.tar.gz
Replace free() with xfree().
Diffstat (limited to 'gdb/dve3900-rom.c')
-rw-r--r--gdb/dve3900-rom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/dve3900-rom.c b/gdb/dve3900-rom.c
index 34707bb9b05..5c6755a3bb0 100644
--- a/gdb/dve3900-rom.c
+++ b/gdb/dve3900-rom.c
@@ -833,7 +833,7 @@ load_section (bfd *abfd, asection *s, unsigned int *data_count)
buffer = (unsigned char *) xmalloc (section_size);
bfd_get_section_contents (abfd, s, buffer, 0, section_size);
process_read_request (buffer, section_size);
- free (buffer);
+ xfree (buffer);
}
}