diff options
Diffstat (limited to 'libio/ioseekoff.c')
-rw-r--r-- | libio/ioseekoff.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libio/ioseekoff.c b/libio/ioseekoff.c index 9229166705..dd8a37fa40 100644 --- a/libio/ioseekoff.c +++ b/libio/ioseekoff.c @@ -81,12 +81,8 @@ _IO_seekoff (fp, offset, dir, mode) { _IO_off64_t retval; - _IO_cleanup_region_start ((void (*) __P ((void *))) _IO_funlockfile, fp); - _IO_flockfile (fp); - + _IO_acquire_lock (fp); retval = _IO_seekoff_unlocked (fp, offset, dir, mode); - - _IO_funlockfile (fp); - _IO_cleanup_region_end (0); + _IO_release_lock (fp); return retval; } |