From: Tobias Droste Date: Thu, 29 Nov 2012 16:02:28 +0000 (+0100) Subject: st/egl/drm: only unref the udev device if needed X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cb8300f5a98016ccc8d34f1bbfee9eb319a2a8a8;p=mesa.git st/egl/drm: only unref the udev device if needed Fixes compiler warning: drm/native_drm.c: In function ‘native_create_display’: drm/native_drm.c:180:21: warning: ‘device’ may be used uninitialized in this function [-Wmaybe-uninitialized] drm/native_drm.c:157:24: note: ‘device’ was declared here Signed-off-by: Tobias Droste Reviewed-by: Alex Deucher --- diff --git a/src/gallium/state_trackers/egl/drm/native_drm.c b/src/gallium/state_trackers/egl/drm/native_drm.c index 23fc137b834..f0c0f548777 100644 --- a/src/gallium/state_trackers/egl/drm/native_drm.c +++ b/src/gallium/state_trackers/egl/drm/native_drm.c @@ -161,23 +161,24 @@ drm_get_device_name(int fd) udev = udev_new(); if (fstat(fd, &buf) < 0) { _eglLog(_EGL_WARNING, "failed to stat fd %d", fd); - goto out; + goto outudev; } device = udev_device_new_from_devnum(udev, 'c', buf.st_rdev); if (device == NULL) { _eglLog(_EGL_WARNING, "could not create udev device for fd %d", fd); - goto out; + goto outdevice; } tmp = udev_device_get_devnode(device); if (!tmp) - goto out; + goto outdevice; device_name = strdup(tmp); -out: +outdevice: udev_device_unref(device); +outudev: udev_unref(udev); #endif