aboutsummaryrefslogtreecommitdiff
path: root/libgfortran/io/unix.c
diff options
context:
space:
mode:
authorThomas Koenig <tkoenig@gcc.gnu.org>2012-09-29 17:38:46 +0000
committerThomas Koenig <tkoenig@gcc.gnu.org>2012-09-29 17:38:46 +0000
commit7c0de7535345f7d271c89d5121c7edfabd1e79f7 (patch)
treeee47c83148e108305938eb2264d383e28dae885d /libgfortran/io/unix.c
parentdf98376a391d42fa570b557391199b041abaeb42 (diff)
downloadgcc-7c0de7535345f7d271c89d5121c7edfabd1e79f7.zip
gcc-7c0de7535345f7d271c89d5121c7edfabd1e79f7.tar.gz
gcc-7c0de7535345f7d271c89d5121c7edfabd1e79f7.tar.bz2
re PR fortran/52724 (Internal read with character(kind=4) data)
2012-09-29 Thomas König <tkoenig@gcc.gnu.org> PR fortran/52724 * list_read.c (next_char): Handle kind=4 characters. * unix.c (open_internal4): Correct lenth of internal file. 2012-09-29 Thomas König <tkoenig@gcc.gnu.org> PR fortran/52724 * gfortran.dg/internal_readwrite_3.f90: New test. From-SVN: r191854
Diffstat (limited to 'libgfortran/io/unix.c')
-rw-r--r--libgfortran/io/unix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgfortran/io/unix.c b/libgfortran/io/unix.c
index 1a9faea..805d4bb 100644
--- a/libgfortran/io/unix.c
+++ b/libgfortran/io/unix.c
@@ -959,7 +959,7 @@ open_internal4 (char *base, int length, gfc_offset offset)
s->buffer = base;
s->buffer_offset = offset;
- s->active = s->file_length = length;
+ s->active = s->file_length = length * sizeof (gfc_char4_t);
s->st.vptr = &mem4_vtable;