diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2013-04-12 16:04:07 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2013-04-12 16:04:07 +0000 |
commit | 39ed5604d7bee498aa7cdd6a7bc9bf86df366fec (patch) | |
tree | bd92a251d8da01bd3293bf633c0d91c4b6e9ddd4 /gdb/jit.c | |
parent | 49369217974f88031ae5f65eba0274bc30ecf74d (diff) | |
download | gdb-39ed5604d7bee498aa7cdd6a7bc9bf86df366fec.zip gdb-39ed5604d7bee498aa7cdd6a7bc9bf86df366fec.tar.gz gdb-39ed5604d7bee498aa7cdd6a7bc9bf86df366fec.tar.bz2 |
gdb/
Fix GDB regression related to PR binutils/14813.
* jit.c (mem_bfd_iovec_close): Return 0 for success.
* minidebug.c (lzma_close): Add return value comment.
* remote.c (remote_bfd_iovec_close): Return 0 for success.
* solib-spu.c (spu_bfd_iovec_close): Likewise.
* spu-linux-nat.c (spu_bfd_iovec_close): Likewise.
Diffstat (limited to 'gdb/jit.c')
-rw-r--r-- | gdb/jit.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -90,7 +90,9 @@ static int mem_bfd_iovec_close (struct bfd *abfd, void *stream) { xfree (stream); - return 1; + + /* Zero means success. */ + return 0; } /* For reading the file, we just need to pass through to target_read_memory and |