Fix len for format->split at end of string

このコミットが含まれているのは:
Curtis McEnroe 2018-09-13 16:15:16 -04:00
コミット 117e6ac9d6
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: CEA2F97ADCFCD77C

ファイルの表示

@ -68,6 +68,7 @@ bool formatParse(struct Format *format, const wchar_t *split) {
format->str += format->len; format->str += format->len;
if (!format->str[0]) { if (!format->str[0]) {
if (split == format->str && !format->split) { if (split == format->str && !format->split) {
format->len = 0;
format->split = true; format->split = true;
return true; return true;
} }