X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fvsscanf.c;h=be9bf61ae16ba5c699e718fc2d5285fa708c17b8;hb=17d539d4dad385b70e22c3611c7642e0a020d990;hp=8a2379026af56d13040fff21589cc8247bc365ff;hpb=f56f5d756f412e9c7058e2af4e36bc1de21dd642;p=pdclib 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 */