diff options
Diffstat (limited to 'newlib/libc/stdio/fvwrite.c')
-rw-r--r-- | newlib/libc/stdio/fvwrite.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/stdio/fvwrite.c b/newlib/libc/stdio/fvwrite.c index 587ffac..34361cb 100644 --- a/newlib/libc/stdio/fvwrite.c +++ b/newlib/libc/stdio/fvwrite.c @@ -145,7 +145,7 @@ __sfvwrite_r (struct _reent *ptr, str = (unsigned char *)_malloc_r (ptr, newsize); if (!str) { - ptr->_errno = ENOMEM; + _REENT_ERRNO(ptr) = ENOMEM; goto err; } memcpy (str, fp->_bf._base, curpos); @@ -162,7 +162,7 @@ __sfvwrite_r (struct _reent *ptr, _free_r (ptr, fp->_bf._base); fp->_flags &= ~__SMBF; /* Ensure correct errno, even if free changed it. */ - ptr->_errno = ENOMEM; + _REENT_ERRNO(ptr) = ENOMEM; goto err; } } |