mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-03-13 12:40:17 +00:00
Merge pull request #72 from andywolk/verto
[mod_verto] Ignore not just zero but negative frame size as well.
This commit is contained in:
commit
31d6676706
@ -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…
x
Reference in New Issue
Block a user