mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-14 03:11:20 +00:00
avformat/rtsp: remove redundant assignment
Reviewed-by: Martin Storsjö <martin@martin.st> Signed-off-by: Limin Wang <lance.lmwang@gmail.com>
This commit is contained in:
parent
a454dfacd5
commit
130e4c6f4c
@ -1178,8 +1178,8 @@ int ff_rtsp_read_reply(AVFormatContext *s, RTSPMessageHeader *reply,
|
||||
char buf[MAX_URL_SIZE], buf1[MAX_URL_SIZE], *q;
|
||||
unsigned char ch;
|
||||
const char *p;
|
||||
int ret, content_length, line_count = 0, request = 0;
|
||||
unsigned char *content = NULL;
|
||||
int ret, content_length, line_count, request;
|
||||
unsigned char *content;
|
||||
|
||||
start:
|
||||
line_count = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user