mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
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
Block a user