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 <tdroste@gmx.de>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
Tobias Droste
2012-11-29 17:02:28 +01:00
committed by Alex Deucher
parent bc4bf3c840
commit cb8300f5a9
@@ -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