diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | stdio-common/vfscanf.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,7 @@ Wed Jan 24 03:22:07 1996 Roland McGrath <roland@churchy.gnu.ai.mit.edu> + * stdio-common/vfscanf.c: Disallow l flag after ll or L. + * stdio-common/Makefile (tests): Add scanf[1-9]. * stdio-common/scanf[1-9].c: New files. Bug tests from hjl. diff --git a/stdio-common/vfscanf.c b/stdio-common/vfscanf.c index 8a799ac..46f0658 100644 --- a/stdio-common/vfscanf.c +++ b/stdio-common/vfscanf.c @@ -313,7 +313,7 @@ __vfscanf (FILE *s, const char *format, va_list argptr) flags |= SHORT; break; case 'l': - if (flags & SHORT) + if (flags & (SHORT|LONGDBL)) conv_error (); else if (flags & LONG) { |