Browse Source

ffserver: Use av_malloc_array()

Reviewed-by: "Reynaldo H. Verdejo Pinochet" <reynaldo@osg.samsung.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.6
Michael Niedermayer 10 years ago
parent
commit
11d8fa5e9d
1 changed files with 2 additions and 4 deletions
  1. +2
    -4
      ffserver.c

+ 2
- 4
ffserver.c View File

@@ -2810,11 +2810,9 @@ static int prepare_sdp_description(FFServerStream *stream, uint8_t **pbuffer,
snprintf(avc->filename, 1024, "rtp://0.0.0.0");
}

if (avc->nb_streams >= INT_MAX/sizeof(*avc->streams) ||
!(avc->streams = av_malloc(avc->nb_streams * sizeof(*avc->streams))))
if (!(avc->streams = av_malloc_array(avc->nb_streams, sizeof(*avc->streams))))
goto sdp_done;
if (avc->nb_streams >= INT_MAX/sizeof(*avs) ||
!(avs = av_malloc(avc->nb_streams * sizeof(*avs))))
if (!(avs = av_malloc_array(avc->nb_streams, sizeof(*avs))))
goto sdp_done;

for(i = 0; i < stream->nb_streams; i++) {


Loading…
Cancel
Save