rtsp: Fix compiler warning for uninitialized variable.

Reviewed-by: Martin Storsjö
This commit is contained in:
Jean First 2012-01-03 23:01:28 +01:00 committed by Carl Eugen Hoyos
parent 912e75169b
commit efaf448888
1 changed files with 1 additions and 1 deletions

View File

@ -1103,7 +1103,7 @@ int ff_rtsp_make_setup_request(AVFormatContext *s, const char *host, int port,
int lower_transport, const char *real_challenge)
{
RTSPState *rt = s->priv_data;
int rtx, j, i, err, interleave = 0;
int rtx = 0, j, i, err, interleave = 0;
RTSPStream *rtsp_st;
RTSPMessageHeader reply1, *reply = &reply1;
char cmd[2048];