mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
Fix nul stripping and get GreatLord of my back ;-)
svn path=/trunk/; revision=20303
This commit is contained in:
@@ -368,7 +368,11 @@ static int numberf(FILE * f, double __n, wchar_t exp_sign, int size, int precis
|
||||
tmp = buf;
|
||||
if ( type & ZEROTRUNC && ((type & SPECIAL) != SPECIAL) ) {
|
||||
j = 0;
|
||||
while ( j < i && ( *tmp == L'0' || *tmp == L'.' )) {
|
||||
while ( j < i && *tmp == L'0' ) {
|
||||
tmp++;
|
||||
i--;
|
||||
}
|
||||
if ( j < i && *tmp == L'.' ) {
|
||||
tmp++;
|
||||
i--;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user