[En-Nut-Discussion] Bug in vscanf() function!

Tomasz Niewęgłowski tomuro at wp.pl
Sat Jun 14 21:52:29 CEST 2003


I find one bug in crt/vsscanf.c file. In vsscanf() function

there is:

int vsscanf(CONST char *string, CONST char *fmt, va_list ap)
{
    CONST char *ptr;

    return _getf(_sgetb, (int) &ptr, fmt, ap);
}

and should be:

int vsscanf(CONST char *string, CONST char *fmt, va_list ap)
{
    CONST char *ptr = string;

    return _getf(_sgetb, (int) &ptr, fmt, ap);
}

Tomasz Niewęgłowski
tomuro at wp.pl



-----------------------------------------------------------------------
Dzwonki polifoniczne, tapety GSM, logo, SMSy graficzne, EMS, animowane
wygaszacze i więcej w NOWYM SERWISIE! - http://logodzwonki.wp.pl







More information about the En-Nut-Discussion mailing list