mirror of https://git.ffmpeg.org/ffmpeg.git
stream_selection can be freed in the fail case, in which case it's unassigned.
Therefore, init it with NULL to prevent a crash on invalid streams. Patch by Zhentan Feng <spyfeng gmail com>. Originally committed as revision 24960 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
774b20ca72
commit
37c506e8b9
|
@ -214,7 +214,7 @@ static int mmsh_open(URLContext *h, const char *uri, int flags)
|
|||
{
|
||||
int i, port, err;
|
||||
char httpname[256], path[256], host[128], location[1024];
|
||||
char *stream_selection;
|
||||
char *stream_selection = NULL;
|
||||
char headers[1024];
|
||||
MMSHContext *mmsh;
|
||||
MMSContext *mms;
|
||||
|
|
Loading…
Reference in New Issue