mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-14 08:05:37 +00:00
CID: 1294483 no need to check if an unsigned variable is less than 0
This commit is contained in:
parent
f09dad317f
commit
4f468b14e9
@ -350,7 +350,7 @@ static void scv_tag(void *buffer, int w, int x, int y, uint8_t n)
|
||||
int i = 0, j=0;
|
||||
uint8_t *p = buffer;
|
||||
|
||||
if (n < 0 || n > 13) return;
|
||||
if (n > 13) return;
|
||||
|
||||
for(i=0; i<8; i++) {
|
||||
for (j=0; j<16; j++) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user