[mod_verto] Ignore not just zero but negative frame size as well.

This commit is contained in:
Andrey Volk 2019-10-23 23:03:18 +04:00
parent 284d67738a
commit 311a20af63
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}