mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
ffserver: move assignment outside condition eval
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
This commit is contained in:
parent
923a244569
commit
0002a22e0e
@ -2837,9 +2837,12 @@ static int prepare_sdp_description(FFServerStream *stream, uint8_t **pbuffer,
|
||||
snprintf(avc->filename, 1024, "rtp://0.0.0.0");
|
||||
}
|
||||
|
||||
if (!(avc->streams = av_malloc_array(avc->nb_streams, sizeof(*avc->streams))))
|
||||
avc->streams = av_malloc_array(avc->nb_streams, sizeof(*avc->streams));
|
||||
if (!avc->streams)
|
||||
goto sdp_done;
|
||||
if (!(avs = av_malloc_array(avc->nb_streams, sizeof(*avs))))
|
||||
|
||||
avs = av_malloc_array(avc->nb_streams, sizeof(*avs));
|
||||
if (!avs)
|
||||
goto sdp_done;
|
||||
|
||||
for(i = 0; i < stream->nb_streams; i++) {
|
||||
|
Loading…
Reference in New Issue
Block a user