Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/stdio64/fopen64.c')
-rw-r--r--newlib/libc/stdio64/fopen64.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/stdio64/fopen64.c b/newlib/libc/stdio64/fopen64.c
index d2ab74c35..3c69820ee 100644
--- a/newlib/libc/stdio64/fopen64.c
+++ b/newlib/libc/stdio64/fopen64.c
@@ -89,7 +89,7 @@ _DEFUN (_fopen64_r, (ptr, file, mode),
if ((fp = __sfp (ptr)) == NULL)
return NULL;
- if ((f = _open64_r (fp->_data, file, oflags, 0666)) < 0)
+ if ((f = _open64_r (ptr, file, oflags, 0666)) < 0)
{
fp->_flags = 0; /* release */
return NULL;
@@ -105,7 +105,7 @@ _DEFUN (_fopen64_r, (ptr, file, mode),
fp->_close = __sclose;
if (fp->_flags & __SAPP)
- fseeko64 (fp, 0, SEEK_END);
+ _fseeko64_r (ptr, fp, 0, SEEK_END);
#ifdef __SCLE
if (__stextmode (fp->_file))