mirror of
https://github.com/notepad-plus-plus/notepad-plus-plus.git
synced 2025-07-26 23:34:44 +02:00
Fix crash of "Next Search Result" cmd on the empty search result
Fix #15247
This commit is contained in:
parent
c7ee70cf32
commit
fa2fce2b41
@ -905,6 +905,9 @@ void Finder::gotoNextFoundResult(int direction)
|
||||
{
|
||||
case pos_infront: // 2 situation:
|
||||
{
|
||||
if (!markingLine._segmentPostions.size())
|
||||
return;
|
||||
|
||||
if (markingLine._segmentPostions[0].second < SC_SEARCHRESULT_LINEBUFFERMAXLENGTH) // 1. The occurrence is displayed in the line
|
||||
{
|
||||
occurrenceNumberInLine_base1 = 1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user