mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 11:12:36 +01:00
Fix possible bug!
This commit is contained in:
parent
efe722ce0e
commit
e0fd7d84c0
@ -4149,7 +4149,7 @@ namespace Nikse.SubtitleEdit.Logic
|
||||
int i2 = 0;
|
||||
int i = 0;
|
||||
int c = 0;
|
||||
while (i < Math.Max(parts2.Length, parts2.Length) && i1 < parts1.Length && i2 < parts2.Length)
|
||||
while (i < Math.Max(parts1.Length, parts2.Length) && i1 < parts1.Length && i2 < parts2.Length)
|
||||
{
|
||||
if (parts1[i1] == parts2[i2])
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user