diff options
author | Ian Lance Taylor <ian@airs.com> | 1995-11-08 16:32:40 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1995-11-08 16:32:40 +0000 |
commit | 092abcdfba2315513cd8277751c5964db3e235b6 (patch) | |
tree | f5ac2cc4a33886e0b2cd07d40e77e4ad02acdc61 /bfd/libbfd.c | |
parent | 549cd3bac1252695a33a3900c3780ef86c1ddea2 (diff) | |
download | gdb-092abcdfba2315513cd8277751c5964db3e235b6.zip gdb-092abcdfba2315513cd8277751c5964db3e235b6.tar.gz gdb-092abcdfba2315513cd8277751c5964db3e235b6.tar.bz2 |
* libbfd.c (bfd_get_file_window): Change return type to boolean.
Cast realloc and malloc return values. If malloc or realloc fail,
set bfd_error_no_memory.
* bfd-in.h (bfd_get_file_window): Change type to boolean.
* bfd-in2.h: Rebuild.
Diffstat (limited to 'bfd/libbfd.c')
-rw-r--r-- | bfd/libbfd.c | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/bfd/libbfd.c b/bfd/libbfd.c index 5f682ec..291b1fd 100644 --- a/bfd/libbfd.c +++ b/bfd/libbfd.c @@ -302,7 +302,7 @@ bfd_free_window (windowp) static int ok_to_map = 1; -int +boolean bfd_get_file_window (abfd, offset, size, windowp, writable) bfd *abfd; file_ptr offset; @@ -412,14 +412,19 @@ bfd_get_file_window (abfd, offset, size, windowp, writable) fprintf (stderr, "\n\t%s(%6ld)", i->data ? "realloc" : " malloc", (long) size_to_alloc); if (i->data) - i->data = realloc (i->data, size_to_alloc); + i->data = (PTR) realloc (i->data, size_to_alloc); else - i->data = malloc (size_to_alloc); + i->data = (PTR) malloc (size_to_alloc); if (debug_windows) fprintf (stderr, "\t-> %p\n", i->data); i->refcount = 1; - if (i->data == 0) - return size_to_alloc == 0; + if (i->data == NULL) + { + if (size_to_alloc == 0) + return true; + bfd_set_error (bfd_error_no_memory); + return false; + } if (bfd_seek (abfd, offset, SEEK_SET) != 0) return false; i->size = bfd_read (i->data, size, 1, abfd); |