From eb22ebe0eceb202984cc9dc1937fed1bf7fa13b8 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 24 Apr 2001 23:06:50 +0000 Subject: 2001-04-24 Joel Sherrill * src/imfs/memfile.c (memfile_open): Did not set iop->size and thus the value was incorrect. Before this field was cleared, this resulted in the value from the last time that IOP was used being still in place. Discovered by Andrew Bythell . --- c/src/exec/libfs/ChangeLog | 8 ++++++++ c/src/exec/libfs/src/imfs/memfile.c | 1 + c/src/libfs/ChangeLog | 8 ++++++++ c/src/libfs/src/imfs/memfile.c | 1 + 4 files changed, 18 insertions(+) (limited to 'c') diff --git a/c/src/exec/libfs/ChangeLog b/c/src/exec/libfs/ChangeLog index ef8ce14bb2..2599a40146 100644 --- a/c/src/exec/libfs/ChangeLog +++ b/c/src/exec/libfs/ChangeLog @@ -1,3 +1,11 @@ +2001-04-24 Joel Sherrill + + * src/imfs/memfile.c (memfile_open): Did not set iop->size + and thus the value was incorrect. Before this field was cleared, + this resulted in the value from the last time that IOP was used + being still in place. Discovered by Andrew Bythell + . + 2001-04-20 Joel Sherrill * src/imfs/imfs_debug.c (IMFS_print_jnode): Modified to print diff --git a/c/src/exec/libfs/src/imfs/memfile.c b/c/src/exec/libfs/src/imfs/memfile.c index fc2680fcfe..5927b155aa 100644 --- a/c/src/exec/libfs/src/imfs/memfile.c +++ b/c/src/exec/libfs/src/imfs/memfile.c @@ -98,6 +98,7 @@ int memfile_open( if (iop->flags & LIBIO_FLAGS_APPEND) iop->offset = the_jnode->info.file.size; + iop->size = the_jnode->info.file.size; return 0; } diff --git a/c/src/libfs/ChangeLog b/c/src/libfs/ChangeLog index ef8ce14bb2..2599a40146 100644 --- a/c/src/libfs/ChangeLog +++ b/c/src/libfs/ChangeLog @@ -1,3 +1,11 @@ +2001-04-24 Joel Sherrill + + * src/imfs/memfile.c (memfile_open): Did not set iop->size + and thus the value was incorrect. Before this field was cleared, + this resulted in the value from the last time that IOP was used + being still in place. Discovered by Andrew Bythell + . + 2001-04-20 Joel Sherrill * src/imfs/imfs_debug.c (IMFS_print_jnode): Modified to print diff --git a/c/src/libfs/src/imfs/memfile.c b/c/src/libfs/src/imfs/memfile.c index fc2680fcfe..5927b155aa 100644 --- a/c/src/libfs/src/imfs/memfile.c +++ b/c/src/libfs/src/imfs/memfile.c @@ -98,6 +98,7 @@ int memfile_open( if (iop->flags & LIBIO_FLAGS_APPEND) iop->offset = the_jnode->info.file.size; + iop->size = the_jnode->info.file.size; return 0; } -- cgit v1.2.3