Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2015-09-27 21:47:23 +0300
committerAnton Khirnov <anton@khirnov.net>2015-10-03 15:08:13 +0300
commitf3202871598f59b570b31b01cfeb64b8fedbd700 (patch)
tree9ac8097c2210580610a7ac4a5a86b29a52a321fc /libavcodec/d3d11va.c
parent2c3dbff1d89bbf8300c121c06524c014cb6e0915 (diff)
d3d11va: check for malloc failure
Diffstat (limited to 'libavcodec/d3d11va.c')
-rw-r--r--libavcodec/d3d11va.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/d3d11va.c b/libavcodec/d3d11va.c
index d24730a348..eea01b8ae5 100644
--- a/libavcodec/d3d11va.c
+++ b/libavcodec/d3d11va.c
@@ -20,7 +20,10 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
+#include <stddef.h>
+
#include "config.h"
+#include "libavutil/error.h"
#include "libavutil/mem.h"
#include "d3d11va.h"
@@ -28,6 +31,8 @@
AVD3D11VAContext *av_d3d11va_alloc_context(void)
{
AVD3D11VAContext* res = av_mallocz(sizeof(AVD3D11VAContext));
+ if (!res)
+ return NULL;
res->context_mutex = INVALID_HANDLE_VALUE;
return res;
}