+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
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
#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)
{
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;
--- /dev/null
+#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;
+}
+ (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;
}
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;