* cache.c (cache_bread): Cast void * pointer before performing

arithmetic on it.
This commit is contained in:
Nick Clifton
2008-10-30 09:05:32 +00:00
parent 462f405c6e
commit cb5220a03f
2 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2008-10-30 Jay Krell <jay.krell@cornell.edu>
* cache.c (cache_bread): Cast void * pointer before performing
arithmetic on it.
2008-10-20 Alan Modra <amodra@bigpond.net.au> 2008-10-20 Alan Modra <amodra@bigpond.net.au>
* elf64-ppc.c (ppc64_elf_process_dot_syms): Renamed from * elf64-ppc.c (ppc64_elf_process_dot_syms): Renamed from

View File

@ -317,7 +317,7 @@ cache_bread (struct bfd *abfd, void *buf, file_ptr nbytes)
if (chunk_size > max_chunk_size) if (chunk_size > max_chunk_size)
chunk_size = max_chunk_size; chunk_size = max_chunk_size;
chunk_nread = cache_bread_1 (abfd, buf + nread, chunk_size); chunk_nread = cache_bread_1 (abfd, (char *) buf + nread, chunk_size);
/* Update the nread count. /* Update the nread count.
@ -342,6 +342,7 @@ cache_bwrite (struct bfd *abfd, const void *where, file_ptr nbytes)
{ {
file_ptr nwrite; file_ptr nwrite;
FILE *f = bfd_cache_lookup (abfd, 0); FILE *f = bfd_cache_lookup (abfd, 0);
if (f == NULL) if (f == NULL)
return 0; return 0;
nwrite = fwrite (where, 1, nbytes, f); nwrite = fwrite (where, 1, nbytes, f);
@ -364,6 +365,7 @@ cache_bflush (struct bfd *abfd)
{ {
int sts; int sts;
FILE *f = bfd_cache_lookup (abfd, CACHE_NO_OPEN); FILE *f = bfd_cache_lookup (abfd, CACHE_NO_OPEN);
if (f == NULL) if (f == NULL)
return 0; return 0;
sts = fflush (f); sts = fflush (f);
@ -377,6 +379,7 @@ cache_bstat (struct bfd *abfd, struct stat *sb)
{ {
int sts; int sts;
FILE *f = bfd_cache_lookup (abfd, CACHE_NO_SEEK_ERROR); FILE *f = bfd_cache_lookup (abfd, CACHE_NO_SEEK_ERROR);
if (f == NULL) if (f == NULL)
return -1; return -1;
sts = fstat (fileno (f), sb); sts = fstat (fileno (f), sb);
@ -385,7 +388,8 @@ cache_bstat (struct bfd *abfd, struct stat *sb)
return sts; return sts;
} }
static const struct bfd_iovec cache_iovec = { static const struct bfd_iovec cache_iovec =
{
&cache_bread, &cache_bwrite, &cache_btell, &cache_bseek, &cache_bread, &cache_bwrite, &cache_btell, &cache_bseek,
&cache_bclose, &cache_bflush, &cache_bstat &cache_bclose, &cache_bflush, &cache_bstat
}; };