linux PIString fix

This commit is contained in:
2022-04-25 23:41:43 +03:00
parent 2dec17e871
commit c3cf0f3586

View File

@@ -238,7 +238,7 @@ void PIString::appendFromChars(const char * c, int s, const char * codepage) {
char c_ [s+1];
memcpy(c_, c, s);
c_[s] = '\0';
const char * cc_ = &c_[0]
const char * cc_ = &c_[0];
pc = &cc;
} else {
pc = &c;