diff options
author | Benjamin Franzke <[email protected]> | 2011-12-13 14:43:48 +0100 |
---|---|---|
committer | Benjamin Franzke <[email protected]> | 2011-12-13 15:32:43 +0100 |
commit | 2a58453e25899e726f02db005de0e1296c326845 (patch) | |
tree | 35ec150d0a9aa04b0645303ecdf4e52a3601c050 /src/egl/drivers/dri2/egl_dri2.c | |
parent | cbd65fe14917def9c0f401c973394d6456cbe83b (diff) |
egl_dri2: Fix some valgrind reported leaks
Free the device_name, reported by Pekka Paalanen.
Destroy wayland display and drm resources,
if created by dri2_initialize_wayland.
Diffstat (limited to 'src/egl/drivers/dri2/egl_dri2.c')
-rw-r--r-- | src/egl/drivers/dri2/egl_dri2.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/egl/drivers/dri2/egl_dri2.c b/src/egl/drivers/dri2/egl_dri2.c index 44c9bc18d66..4c9ece351af 100644 --- a/src/egl/drivers/dri2/egl_dri2.c +++ b/src/egl/drivers/dri2/egl_dri2.c @@ -608,6 +608,8 @@ dri2_terminate(_EGLDriver *drv, _EGLDisplay *disp) close(dri2_dpy->fd); if (dri2_dpy->driver) dlclose(dri2_dpy->driver); + if (dri2_dpy->device_name) + free(dri2_dpy->device_name); if (disp->PlatformDisplay == NULL) { switch (disp->Platform) { @@ -616,14 +618,9 @@ dri2_terminate(_EGLDriver *drv, _EGLDisplay *disp) xcb_disconnect(dri2_dpy->conn); break; #endif -#ifdef HAVE_WAYLAND_PLATFORM - case _EGL_PLATFORM_WAYLAND: - wl_display_destroy(dri2_dpy->wl_dpy); - break; -#endif #ifdef HAVE_DRM_PLATFORM case _EGL_PLATFORM_DRM: - if (dri2_dpy->own_gbm_device) { + if (dri2_dpy->own_device) { gbm_device_destroy(&dri2_dpy->gbm_dri->base.base); } break; |