From f1fe768fa8a8ed308d92ebc257bd1768a70a3ef8 Mon Sep 17 00:00:00 2001 From: Magnus Olsen Date: Thu, 1 Jun 2006 09:38:11 +0000 Subject: [PATCH] Sorry I did wrong calc of the position of ungetc did not think of TCHAR size. svn path=/trunk/; revision=22144 --- reactos/lib/crt/stdio/ungetc.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/reactos/lib/crt/stdio/ungetc.c b/reactos/lib/crt/stdio/ungetc.c index 819ffce4feb..ac6c681e170 100644 --- a/reactos/lib/crt/stdio/ungetc.c +++ b/reactos/lib/crt/stdio/ungetc.c @@ -21,13 +21,11 @@ _TINT _ungettc(_TINT c, FILE *f) if (f->_ptr == f->_base) { - if (f->_cnt == 0) - f->_ptr+=sizeof(_TCHAR); - else + if (!f->_cnt == 0) return _TEOF; - } + } - fseek(f, -1, SEEK_CUR); + fseek(f, -sizeof(_TCHAR), SEEK_CUR); if(*(_TCHAR*)f->_ptr != c) *((_TCHAR*)(f->_ptr)) = c;