[mod_verto] Ignore not just zero but negative frame size as well.
This commit is contained in:
parent
284d67738a
commit
311a20af63
|
@ -1922,7 +1922,7 @@ static void client_run(jsock_t *jsock)
|
|||
int rem = 0;
|
||||
int dur = 0, j = 0;
|
||||
|
||||
if (!(size = atoi(p))) {
|
||||
if ((size = atoi(p)) <= 0) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue