ffserver: do not ignore lseek() return

Should fix FFmpeg Coverity Scan issue #732177

Signed-off-by: Reynaldo H. Verdejo Pinochet <r.verdejo@sisa.samsung.com>
pull/68/head
Reynaldo H. Verdejo Pinochet 11 years ago
parent 898192e029
commit 5b881499a8
  1. 7
      ffserver.c

@ -2755,8 +2755,11 @@ static int http_receive_data(HTTPContext *c)
/* a packet has been received : write it in the store, except /* a packet has been received : write it in the store, except
if header */ if header */
if (c->data_count > FFM_PACKET_SIZE) { if (c->data_count > FFM_PACKET_SIZE) {
/* XXX: use llseek or url_seek */ /* XXX: use llseek or url_seek
lseek(c->feed_fd, feed->feed_write_index, SEEK_SET); * XXX: Should probably fail? */
if (lseek(c->feed_fd, feed->feed_write_index, SEEK_SET) == -1)
http_log("Seek to %"PRId64" failed\n", feed->feed_write_index);
if (write(c->feed_fd, c->buffer, FFM_PACKET_SIZE) < 0) { if (write(c->feed_fd, c->buffer, FFM_PACKET_SIZE) < 0) {
http_log("Error writing to feed file: %s\n", strerror(errno)); http_log("Error writing to feed file: %s\n", strerror(errno));
goto fail; goto fail;

Loading…
Cancel
Save