diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2008-03-11 15:30:36 +0100 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2008-03-11 15:30:36 +0100 |
commit | 5feca7a3847d4035b9d4116ceb5ffd24d5ae07b8 (patch) | |
tree | 16939c8940b12c4a53e7129cc13ca53ef5304ab6 | |
parent | c3bd6847b68e11761f5af54d7a7fdb33efe19d65 (diff) | |
download | xine-lib-5feca7a3847d4035b9d4116ceb5ffd24d5ae07b8.tar.gz xine-lib-5feca7a3847d4035b9d4116ceb5ffd24d5ae07b8.tar.bz2 |
Use calloc() to avoid possible integer overflow if stream_count is big enough.
--HG--
extra : transplant_source : %90%CC%97%8Fk%C1%FD%9C%A4%FB%0C%9E%07%F5A%B8%29o%EEo
-rw-r--r-- | src/input/libreal/sdpplin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input/libreal/sdpplin.c b/src/input/libreal/sdpplin.c index c62b6bbc1..5b22e9044 100644 --- a/src/input/libreal/sdpplin.c +++ b/src/input/libreal/sdpplin.c @@ -199,7 +199,7 @@ static sdpplin_stream_t *sdpplin_parse_stream(char **data) { if(filter(*data,"a=OpaqueData:buffer;",&buf)) { decoded = b64_decode(buf, decoded, &(desc->mlti_data_size)); if ( decoded != NULL ) { - desc->mlti_data = malloc(sizeof(char)*desc->mlti_data_size); + desc->mlti_data = calloc(desc->mlti_data_size, sizeof(char)); memcpy(desc->mlti_data, decoded, desc->mlti_data_size); handled=1; *data=nl(*data); @@ -294,7 +294,7 @@ sdpplin_t *sdpplin_parse(char *data) { if(filter(data,"a=StreamCount:integer;",&buf)) { desc->stream_count=atoi(buf); - desc->stream = malloc(sizeof(sdpplin_stream_t*)*desc->stream_count); + desc->stream = calloc(desc->stream_count, sizeof(sdpplin_stream_t*)); handled=1; data=nl(data); } |