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
Line 103 has if ( idx >= 0 && idx < link->size ); however, idx is an unsigned integer. The first comparison will always evaluate to true, and it is either redundant, or an error was made here and a different check was intended.
The text was updated successfully, but these errors were encountered:
Line
103
hasif ( idx >= 0 && idx < link->size )
; however,idx
is an unsigned integer. The first comparison will always evaluate to true, and it is either redundant, or an error was made here and a different check was intended.The text was updated successfully, but these errors were encountered: