1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-10-02 09:09:59 +02:00

Fix a segfault when handling errors or .asx or .ram files. Silly bug

on my part.

Originally committed as revision 536 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Philip Gladstone 2002-05-20 03:02:09 +00:00
parent 10fc842423
commit 2e04edb36e

View File

@ -400,7 +400,8 @@ static int handle_http(HTTPContext *c, long cur_time)
} }
} else { } else {
c->buffer_ptr += len; c->buffer_ptr += len;
c->stream->bytes_served += len; if (c->stream)
c->stream->bytes_served += len;
c->data_count += len; c->data_count += len;
if (c->buffer_ptr >= c->buffer_end) { if (c->buffer_ptr >= c->buffer_end) {
/* if error, exit */ /* if error, exit */
@ -1225,7 +1226,8 @@ static int http_send_data(HTTPContext *c)
} else { } else {
c->buffer_ptr += len; c->buffer_ptr += len;
c->data_count += len; c->data_count += len;
c->stream->bytes_served += len; if (c->stream)
c->stream->bytes_served += len;
} }
} }
return 0; return 0;