[Mesa-dev] [PATCH] egl: Added NULL check in eglCreateContext
Ian Romanick
idr at freedesktop.org
Mon Dec 8 13:45:51 PST 2014
On 12/02/2014 12:10 AM, Valentin Corfu wrote:
> With this check we can avoid segmentation fault when invalid value used during eglCreateContext.
>
> Cc: mesa-stable at lists.freedesktop.org
> Cc: mesa-dev at lists.freedesktop.org
> Signed-off-by: Valentin Corfu <valentinx.corfu at intel.com>
> ---
> src/egl/drivers/dri2/egl_dri2.c | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/src/egl/drivers/dri2/egl_dri2.c b/src/egl/drivers/dri2/egl_dri2.c
> index d795a2f..819cb77 100644
> --- a/src/egl/drivers/dri2/egl_dri2.c
> +++ b/src/egl/drivers/dri2/egl_dri2.c
> @@ -808,6 +808,11 @@ dri2_create_context(_EGLDriver *drv, _EGLDisplay *disp, _EGLConfig *conf,
>
> (void) drv;
>
> + if (conf == NULL) {
> + _eglError(EGL_BAD_CONFIG, "dri2_create_context");
> + return NULL;
> + }
> +
Can't conf be NULL when used with MESA_configless_context? See also the
conf != NULL check at line 853.
Also, parameter validation etc. should go in eglCreateContext.
> dri2_ctx = malloc(sizeof *dri2_ctx);
> if (!dri2_ctx) {
> _eglError(EGL_BAD_ALLOC, "eglCreateContext");
>
More information about the mesa-dev
mailing list