You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In line 736 to 739, the if statement: if (rawtext.length > 1 && ((byte) 0xFE == rawtext[0] && (byte) 0xFF == rawtext[1]) || ((byte) 0xFF == rawtext[0] && (byte) 0xFE == rawtext[1]))
It can potentially cause ArrayIndexOutOfBound When rawtext.length <= 1 and gets to (byte) 0xFF == rawtext[0] && (byte) 0xFE == rawtext[1])
The text was updated successfully, but these errors were encountered:
In line 736 to 739, the if statement:
if (rawtext.length > 1 && ((byte) 0xFE == rawtext[0] && (byte) 0xFF == rawtext[1]) || ((byte) 0xFF == rawtext[0] && (byte) 0xFE == rawtext[1]))
It can potentially cause ArrayIndexOutOfBound When rawtext.length <= 1 and gets to (byte) 0xFF == rawtext[0] && (byte) 0xFE == rawtext[1])
The text was updated successfully, but these errors were encountered: