* [PATCH] (Minor) Bugfixes to vsprintf.c, vsscanf().
@ 2001-10-18 0:12 johan verrept
2001-10-18 1:19 ` johan verrept
0 siblings, 1 reply; 2+ messages in thread
From: johan verrept @ 2001-10-18 0:12 UTC (permalink / raw)
To: linux-kernel; +Cc: Linus Torvalds, alan cox
hello,
minor bugfix for vsprintf.c, vsscanf did not discard whitespace in input:
- when encoutering whitespace in fmt not followed by '%'
- in conversion where result is ignored with '*'
There is another bugfix in this, don't know from who. (picked it up with uml)
(vsscanf used to skip two characters in the fmt for a single char in the input if not in
conversion.)
Patch against 2.4.12, I am afraid.
enjoy,
J.
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] (Minor) Bugfixes to vsprintf.c, vsscanf().
2001-10-18 0:12 [PATCH] (Minor) Bugfixes to vsprintf.c, vsscanf() johan verrept
@ 2001-10-18 1:19 ` johan verrept
0 siblings, 0 replies; 2+ messages in thread
From: johan verrept @ 2001-10-18 1:19 UTC (permalink / raw)
To: linux-kernel, Linus Torvalds, alan cox
[-- Attachment #1: Type: text/plain, Size: 592 bytes --]
johan verrept wrote:
>
> hello,
>
> minor bugfix for vsprintf.c, vsscanf did not discard whitespace in input:
> - when encoutering whitespace in fmt not followed by '%'
> - in conversion where result is ignored with '*'
>
> There is another bugfix in this, don't know from who. (picked it up with uml)
> (vsscanf used to skip two characters in the fmt for a single char in the input if not in
> conversion.)
>
> Patch against 2.4.12, I am afraid.
Attached patch is beter. Both bugs are fixed and it adds fieldwidth support for conversions with
ignored results.
Again against 2.4.12.
J.
[-- Attachment #2: vsprintf.c.diff --]
[-- Type: text/plain, Size: 1226 bytes --]
--- linux-2.4.12-clean/lib/vsprintf.c Sun Sep 16 20:26:10 2001
+++ linux-2.4.12-devel/lib/vsprintf.c Thu Oct 18 03:06:47 2001
@@ -525,12 +525,15 @@
for (; *fmt; fmt++) {
/* skip any white space in format */
if (isspace(*fmt)) {
+ /* space in fmt skips all space in input */
+ while (isspace(*str)) str++;
continue;
}
/* anything that is not a conversion must match exactly */
if (*fmt != '%') {
- if (*fmt++ != *str++)
+ /* Don't bump fmt because the for header will do it */
+ if (*fmt != *str++)
return num;
continue;
}
@@ -540,10 +543,25 @@
* advance both strings to next white space
*/
if (*fmt == '*') {
- while (!isspace(*fmt))
+ fmt++;
+ /* get fieldwidth */
+ field_width = 0xffffffffUL;
+ if (isdigit(*fmt))
+ field_width = skip_atoi(&fmt);
+
+ /* skip possible conversion qualifier */
+ if (*fmt == 'h' || *fmt == 'l' || *fmt == 'L' || *fmt == 'Z')
fmt++;
- while(!isspace(*str))
+
+ /* do not skip conversion char, the for loop will do this */
+
+ /* eat all whitespace before conversion! */
+ while(isspace(*str))
+ str++;
+ while(!isspace(*str) && field_width) {
+ field_width--;
str++;
+ }
continue;
}
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2001-10-18 1:30 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-10-18 0:12 [PATCH] (Minor) Bugfixes to vsprintf.c, vsscanf() johan verrept
2001-10-18 1:19 ` johan verrept
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox