diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/egl/main/eglsurface.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/egl/main/eglsurface.c b/src/egl/main/eglsurface.c index 1dca3e06876..c5ea2245b3d 100644 --- a/src/egl/main/eglsurface.c +++ b/src/egl/main/eglsurface.c @@ -314,9 +314,7 @@ _eglInitSurface(_EGLSurface *surf, _EGLDisplay *dpy, EGLint type, return EGL_FALSE; } - - memset(surf, 0, sizeof(_EGLSurface)); - _eglInitResource(&surf->Resource, sizeof(_EGLResource), dpy); + _eglInitResource(&surf->Resource, sizeof(*surf), dpy); surf->Type = type; surf->Config = conf; |