mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-12-25 01:51:49 +08:00
bugfixed possible crash
This commit is contained in:
parent
bd1afe2a0a
commit
3d0183f6e9
@ -1374,7 +1374,8 @@ JKQTMathText::tokenType JKQTMathText::getToken() {
|
||||
while ((currentTokenID<parseString.size()) && (QString("01234567").contains(c))) {
|
||||
num+=c;
|
||||
currentTokenID++;
|
||||
c=parseString[currentTokenID];
|
||||
if (currentTokenID<parseString.size()) c=parseString[currentTokenID];
|
||||
else c=QChar();
|
||||
}
|
||||
if (currentTokenID<parseString.size()) currentTokenID--;
|
||||
currentTokenName=QString::fromStdString(jkqtp_UnicodeToUTF8(num.toLongLong(nullptr, 8)));
|
||||
|
Loading…
Reference in New Issue
Block a user