mirror of https://git.ffmpeg.org/ffmpeg.git
avdevice/dshow_enummediatypes: check return of av_malloc
Untested. Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
This commit is contained in:
parent
b456ece557
commit
6f1ddc726f
|
@ -37,6 +37,8 @@ libAVEnumMediaTypes_Next(libAVEnumMediaTypes *this, unsigned long n,
|
|||
if (!this->pos && n == 1) {
|
||||
if (!IsEqualGUID(&this->type.majortype, &GUID_NULL)) {
|
||||
AM_MEDIA_TYPE *type = av_malloc(sizeof(AM_MEDIA_TYPE));
|
||||
if (!type)
|
||||
return E_OUTOFMEMORY;
|
||||
ff_copy_dshow_media_type(type, &this->type);
|
||||
*types = type;
|
||||
count = 1;
|
||||
|
|
Loading…
Reference in New Issue