diff options
-rw-r--r-- | src/glx/dri2_glx.c | 1 | ||||
-rw-r--r-- | src/glx/dri_glx.c | 1 | ||||
-rw-r--r-- | src/glx/drisw_glx.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/src/glx/dri2_glx.c b/src/glx/dri2_glx.c index 58f09ed86a..4a08f84de3 100644 --- a/src/glx/dri2_glx.c +++ b/src/glx/dri2_glx.c @@ -224,6 +224,7 @@ dri2CreateDrawable(__GLXscreenConfigs *base, XID xDrawable, if (!pdraw) return NULL; + memset(pdraw, 0, sizeof *pdraw); pdraw->base.destroyDrawable = dri2DestroyDrawable; pdraw->base.xDrawable = xDrawable; pdraw->base.drawable = drawable; diff --git a/src/glx/dri_glx.c b/src/glx/dri_glx.c index 95cded792d..d0f680de63 100644 --- a/src/glx/dri_glx.c +++ b/src/glx/dri_glx.c @@ -633,6 +633,7 @@ driCreateDrawable(__GLXscreenConfigs *base, if (!pdp) return NULL; + memset(pdp, 0, sizeof *pdp); pdp->base.drawable = drawable; pdp->base.psc = &psc->base; diff --git a/src/glx/drisw_glx.c b/src/glx/drisw_glx.c index 4265f56412..852e56e484 100644 --- a/src/glx/drisw_glx.c +++ b/src/glx/drisw_glx.c @@ -362,6 +362,7 @@ driCreateDrawable(__GLXscreenConfigs *base, XID xDrawable, if (!pdp) return NULL; + memset(pdp, 0, sizeof *pdp); pdp->base.xDrawable = xDrawable; pdp->base.drawable = drawable; pdp->base.psc = &psc->base; |