X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fstdio%2Fvsscanf.c;h=be9bf61ae16ba5c699e718fc2d5285fa708c17b8;hp=8a2379026af56d13040fff21589cc8247bc365ff;hb=51c28f42a44612c2684d808fe62c854d1e39d992;hpb=f91c757a54bdfb3d0ee43e5352973b9f940f0a71 diff --git a/functions/stdio/vsscanf.c b/functions/stdio/vsscanf.c index 8a23790..be9bf61 100644 --- a/functions/stdio/vsscanf.c +++ b/functions/stdio/vsscanf.c @@ -48,6 +48,11 @@ int vsscanf( const char * _PDCLIB_restrict s, const char * _PDCLIB_restrict form /* Non-whitespace char in format string: Match verbatim */ if ( *status.s != *format ) { + if ( *status.s == '\0' && status.n == 0 ) + { + /* Early input error */ + return EOF; + } /* Matching error */ return status.n; } @@ -61,9 +66,13 @@ int vsscanf( const char * _PDCLIB_restrict s, const char * _PDCLIB_restrict form } else { - /* NULL return code indicates input error */ + /* NULL return code indicates error */ if ( rc == NULL ) { + if ( ( *status.s == '\n' ) && ( status.n == 0 ) ) + { + status.n = EOF; + } break; } /* Continue parsing after conversion specifier */