From 4c3295d38e30ab6c0e5b12624c46a8dcf123ef64 Mon Sep 17 00:00:00 2001 From: drepper Date: Tue, 5 Nov 2002 08:24:01 +0000 Subject: [PATCH] Call _IO_seekoff_unlocked instead of _IO_seekoff_internal. --- libio/ioftell.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libio/ioftell.c b/libio/ioftell.c index 2a389c37be..fd5da6b618 100644 --- a/libio/ioftell.c +++ b/libio/ioftell.c @@ -38,7 +38,7 @@ _IO_ftell (fp) CHECK_FILE (fp, -1L); _IO_cleanup_region_start ((void (*) __P ((void *))) _IO_funlockfile, fp); _IO_flockfile (fp); - pos = INTUSE(_IO_seekoff) (fp, 0, _IO_seek_cur, 0); + pos = _IO_seekoff_unlocked (fp, 0, _IO_seek_cur, 0); if (_IO_in_backup (fp)) { if (fp->_vtable_offset != 0 || fp->_mode <= 0) -- 2.11.0