fixed bug where the string lenght wasnt decreased on some cases
This commit is contained in:
parent
1d508c0e04
commit
631e709471
|
@ -390,13 +390,16 @@ reswitch:
|
|||
}
|
||||
case '%':
|
||||
*buf_p++ = static_cast<D>(ch);
|
||||
llen--;
|
||||
break;
|
||||
case '\0':
|
||||
*buf_p++ = static_cast<D>('%');
|
||||
llen--;
|
||||
goto done;
|
||||
break;
|
||||
default:
|
||||
*buf_p++ = static_cast<D>(ch);
|
||||
llen--;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user