mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-03 08:11:08 +00:00
Update.
2002-08-26 Ulrich Drepper <drepper@redhat.com> * libio/wfileops.c (_IO_wfile_seekoff): Set fp->_offset after finding the read position [PR libc/4265]. * libio/Makefile (tests): Add bug-rewind2. * libio/bug-rewind2.c: New file.
This commit is contained in:
parent
34816665b6
commit
442685a8ba
@ -1,3 +1,10 @@
|
||||
2002-08-26 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* libio/wfileops.c (_IO_wfile_seekoff): Set fp->_offset after
|
||||
finding the read position [PR libc/4265].
|
||||
* libio/Makefile (tests): Add bug-rewind2.
|
||||
* libio/bug-rewind2.c: New file.
|
||||
|
||||
2002-08-25 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* nss/getXXbyYY_r.c (REENTRANT_NAME): Return ENOENT if status is
|
||||
|
@ -51,7 +51,7 @@ tests = tst_swprintf tst_wprintf tst_swscanf tst_wscanf tst_getwc tst_putwc \
|
||||
tst_wprintf2 tst-widetext test-fmemopen tst-ext tst-fopenloc \
|
||||
tst-fgetws tst-ungetwc1 tst-ungetwc2 tst-swscanf tst-sscanf \
|
||||
tst-mmap-setvbuf bug-ungetwc1 bug-ungetwc2 tst-atime tst-eof \
|
||||
tst-freopen bug-rewind bug-ungetc bug-fseek \
|
||||
tst-freopen bug-rewind bug-rewind2 bug-ungetc bug-fseek \
|
||||
tst-mmap-eofsync tst-mmap-fflushsync bug-mmap-fflush \
|
||||
tst-mmap2-eofsync tst-mmap-offend
|
||||
test-srcs = test-freopen
|
||||
|
@ -5,11 +5,26 @@
|
||||
#define FAILED 3
|
||||
|
||||
|
||||
static int fd;
|
||||
|
||||
static void prepare (void);
|
||||
#define PREPARE(argc, argv) prepare ()
|
||||
|
||||
|
||||
#define TEST_FUNCTION do_test ()
|
||||
static int do_test (void);
|
||||
#include "../test-skeleton.c"
|
||||
|
||||
|
||||
static void
|
||||
prepare (void)
|
||||
{
|
||||
fd = create_temp_file ("wrewind.", NULL);
|
||||
if (fd == -1)
|
||||
exit (3);
|
||||
}
|
||||
|
||||
|
||||
static int
|
||||
do_test (void)
|
||||
{
|
||||
@ -17,11 +32,6 @@ do_test (void)
|
||||
char arg1;
|
||||
char arg2;
|
||||
int ret1, ret2, result, num;
|
||||
int fd;
|
||||
|
||||
fd = create_temp_file ("wrewind.", NULL);
|
||||
if (fd == -1)
|
||||
return 3;
|
||||
|
||||
ret1 = 0;
|
||||
ret2 = 0;
|
||||
|
62
libio/bug-rewind2.c
Normal file
62
libio/bug-rewind2.c
Normal file
@ -0,0 +1,62 @@
|
||||
#include <stdio.h>
|
||||
#include <wchar.h>
|
||||
|
||||
|
||||
static int fd;
|
||||
|
||||
static void prepare (void);
|
||||
#define PREPARE(argc, argv) prepare ()
|
||||
|
||||
|
||||
#define TEST_FUNCTION do_test ()
|
||||
static int do_test (void);
|
||||
#include "../test-skeleton.c"
|
||||
|
||||
|
||||
static void
|
||||
prepare (void)
|
||||
{
|
||||
fd = create_temp_file ("wrewind2.", NULL);
|
||||
if (fd == -1)
|
||||
exit (3);
|
||||
}
|
||||
|
||||
|
||||
static int
|
||||
do_test (void)
|
||||
{
|
||||
wchar_t dummy[10];
|
||||
int ret = 0;
|
||||
FILE *fp;
|
||||
int result = 0;
|
||||
|
||||
fp = fdopen (fd, "w+");
|
||||
if (fp == NULL)
|
||||
{
|
||||
puts ("fopen(""testfile"", ""w+"") returned NULL.");
|
||||
return 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
fwprintf (fp, L"abcd");
|
||||
printf ("current pos = %ld\n", ftell (fp));
|
||||
if (ftell (fp) != 4)
|
||||
result = 1;
|
||||
|
||||
rewind (fp);
|
||||
ret = fwscanf (fp, L"%c", dummy);
|
||||
|
||||
printf ("current pos = %ld\n", ftell (fp));
|
||||
if (ftell (fp) != 1)
|
||||
result = 1;
|
||||
|
||||
rewind (fp);
|
||||
printf ("current pos = %ld\n", ftell (fp));
|
||||
if (ftell (fp) != 0)
|
||||
result = 1;
|
||||
|
||||
fclose (fp);
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
@ -674,7 +674,7 @@ _IO_wfile_seekoff (fp, offset, dir, mode)
|
||||
+ (sizeof (buffer)
|
||||
/ sizeof (buffer[0])),
|
||||
&ignore);
|
||||
if (status != __codecvt_ok && status != __codecvt_partial)
|
||||
if (status != __codecvt_ok && status != __codecvt_partial)
|
||||
{
|
||||
fp->_flags |= _IO_ERR_SEEN;
|
||||
goto dumb;
|
||||
@ -682,6 +682,10 @@ _IO_wfile_seekoff (fp, offset, dir, mode)
|
||||
}
|
||||
while (read_ptr_copy != fp->_IO_read_ptr);
|
||||
|
||||
fp->_offset = (fp->_offset
|
||||
- (fp->_IO_read_end - fp->_IO_read_base)
|
||||
+ rel_offset);
|
||||
|
||||
fp->_wide_data->_IO_read_ptr = fp->_wide_data->_IO_read_end
|
||||
= fp->_wide_data->_IO_read_base;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user