ffserver: drop redundant else clause

Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
This commit is contained in:
Reynaldo H. Verdejo Pinochet 2015-01-03 20:06:19 -03:00
parent 9e55130a9d
commit 196bc03a86
1 changed files with 2 additions and 2 deletions

View File

@ -2435,8 +2435,8 @@ static int http_send_data(HTTPContext *c)
return -1;
else
return 0;
} else
c->buffer_ptr += len;
}
c->buffer_ptr += len;
c->data_count += len;
update_datarate(&c->datarate, c->data_count);