This commit is contained in:
2023-07-06 20:10:17 +03:00
parent f4be39d461
commit 472591fbf8
2 changed files with 2 additions and 2 deletions

View File

@@ -95,7 +95,7 @@ CDSection CDParser::parse(PIIODevice * d, int cdsection_type) {
content = PIString::fromUTF8((const char *)c.data());
}
if (PIStringAscii(d->className()) == PIStringAscii("PIIOString")) content = *(((PIIOString *)d)->string());
if (PIStringAscii(d->className()) == PIStringAscii("PIIOByteArray")) content = PIString(*(((PIIOByteArray *)d)->byteArray()));
if (PIStringAscii(d->className()) == PIStringAscii("PIIOByteArray")) content = PIString::fromUTF8(*(((PIIOByteArray *)d)->byteArray()));
PIIOString ios(&content);
// int phase = 0;
int cind = -1;