diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-02-19 07:23:04 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-02-19 07:23:04 +0000 |
commit | 13bc28f66b3ae49a7d93276e25436b2eb7a05565 (patch) | |
tree | 8adf6485c22581212c9c5da3b0daedf506361046 | |
parent | 232bd771a3d50102597b20b2c2f2d420d41a1f19 (diff) | |
download | glibc-13bc28f66b3ae49a7d93276e25436b2eb7a05565.tar.gz glibc-13bc28f66b3ae49a7d93276e25436b2eb7a05565.tar.xz glibc-13bc28f66b3ae49a7d93276e25436b2eb7a05565.zip |
Update
2002-02-19 Jakub Jelinek <jakub@redhat.com> * libio/fileops.c (_IO_file_underflow_mmap): Cast to unsigned char pointer before dereferencing.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | libio/fileops.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 9a42abb607..a569669038 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-02-19 Jakub Jelinek <jakub@redhat.com> + + * libio/fileops.c (_IO_file_underflow_mmap): Cast to unsigned char + pointer before dereferencing. + 2002-02-18 Roland McGrath <roland@frob.com> * sysdeps/mach/hurd/times.c: Fix typo in last change. diff --git a/libio/fileops.c b/libio/fileops.c index 60481b1af4..37c47eef89 100644 --- a/libio/fileops.c +++ b/libio/fileops.c @@ -579,7 +579,7 @@ _IO_file_underflow_mmap (_IO_FILE *fp) fp->_offset = fp->_IO_buf_end - fp->_IO_buf_base; fp->_IO_read_end = fp->_IO_buf_end; - return *fp->_IO_read_ptr; + return *(unsigned char *) fp->_IO_read_ptr; } fp->_flags |= _IO_EOF_SEEN; |