From f5ea12a471bc80cef1b6e7c29d5e3909e8aa1a19 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 28 Feb 2017 12:34:30 +0200 Subject: [PATCH] glcolorconvert: Check return value of gst_gl_context_check_framebuffer_status() CID 1401588 --- gst-libs/gst/gl/gstglcolorconvert.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gst-libs/gst/gl/gstglcolorconvert.c b/gst-libs/gst/gl/gstglcolorconvert.c index 0bf6b46..1713861 100644 --- a/gst-libs/gst/gl/gstglcolorconvert.c +++ b/gst-libs/gst/gl/gstglcolorconvert.c @@ -2453,6 +2453,7 @@ _do_convert_draw (GstGLContext * context, GstGLColorConvert * convert) struct ConvertInfo *c_info = &convert->priv->convert_info; guint out_width, out_height; gint i; + gboolean ret = TRUE; GLint viewport_dim[4] = { 0 }; @@ -2525,9 +2526,10 @@ _do_convert_draw (GstGLContext * context, GstGLColorConvert * convert) gl->Viewport (viewport_dim[0], viewport_dim[1], viewport_dim[2], viewport_dim[3]); - gst_gl_context_check_framebuffer_status (context); + if (!gst_gl_context_check_framebuffer_status (context)) + ret = FALSE; gst_gl_context_clear_framebuffer (context); - return TRUE; + return ret; } -- 2.7.4