fix: a DICT crash caused by string out of bound access

This commit is contained in:
shenleban tongying 2024-11-12 16:32:32 -05:00
parent 8fc71c9586
commit 0a4a0958b7

View file

@ -538,11 +538,13 @@ void DictServerWordSearchRequest::readMatchData( QByteArray & reply )
if ( word.endsWith( '\"' ) ) {
word.chop( 1 );
}
if ( word[ 0 ] == '\"' ) {
word = word.mid( 1 );
if ( word.startsWith( '\"' ) ) {
word = word.remove( 0, 1 );
}
this->addMatchedWord( word );
if ( !word.isEmpty() ) {
this->addMatchedWord( word );
}
}
reply = this->dictImpl->socket.readLine();