aboutsummaryrefslogtreecommitdiff
path: root/stdio-common/vfscanf.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-11-13 19:38:37 +0000
committerUlrich Drepper <drepper@redhat.com>1998-11-13 19:38:37 +0000
commit27658f2067a43aeddd03a98a562020ae9fea92c6 (patch)
tree20a47d05a34bbf147f24631cc9793487fe379056 /stdio-common/vfscanf.c
parent77d10f94bf43b73394f9a3eaf1052c4bfc52905f (diff)
downloadglibc-27658f2067a43aeddd03a98a562020ae9fea92c6.tar
glibc-27658f2067a43aeddd03a98a562020ae9fea92c6.tar.gz
glibc-27658f2067a43aeddd03a98a562020ae9fea92c6.tar.bz2
glibc-27658f2067a43aeddd03a98a562020ae9fea92c6.zip
Update.
* stdio-common/vfscanf.c: Don't return -1 in case of an invalid format, jsut stop.
Diffstat (limited to 'stdio-common/vfscanf.c')
-rw-r--r--stdio-common/vfscanf.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/stdio-common/vfscanf.c b/stdio-common/vfscanf.c
index d2302dd9a2..1b6dc6537d 100644
--- a/stdio-common/vfscanf.c
+++ b/stdio-common/vfscanf.c
@@ -85,11 +85,6 @@
__libc_cleanup_end (0); \
return EOF; \
} while (0)
-# define fmt_error() do { \
- _IO_funlockfile (s); \
- __libc_cleanup_end (0); \
- return EOF; \
- } while (0)
# define ARGCHECK(s, format) \
do \
{ \
@@ -134,10 +129,6 @@
__set_errno (ENOMEM); \
return EOF; \
} while (0)
-# define fmt_error() do { \
- funlockfile (s); \
- return EOF; \
- } while (0)
# define ARGCHECK(s, format) \
do \
{ \
@@ -1259,7 +1250,7 @@ __vfscanf (FILE *s, const char *format, va_list argptr)
default:
/* If this is an unknown format character punt. */
- fmt_error ();
+ conv_error ();
}
}