Sophie

Sophie

distrib > Mageia > 5 > i586 > by-pkgid > 578220ff64cb3ddf982acff53dff8b22 > files > 5

gnome-settings-daemon-3.14.2-2.mga5.src.rpm

From 16958057fabdf6a5e5f94d877dc78eef46411cf4 Mon Sep 17 00:00:00 2001
From: Carlos Garnacho <carlosg@gnome.org>
Date: Tue, 24 Feb 2015 16:36:37 +0100
Subject: [PATCH 2/2] wacom: Return NULL area if there is no backing GdkDevice

This may be true for testing GsdWacomDevices, which would cause warnings
there.
---
 plugins/wacom/gsd-wacom-device.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/plugins/wacom/gsd-wacom-device.c b/plugins/wacom/gsd-wacom-device.c
index 1b18143..e06699a 100644
--- a/plugins/wacom/gsd-wacom-device.c
+++ b/plugins/wacom/gsd-wacom-device.c
@@ -1975,6 +1975,9 @@ gsd_wacom_device_get_default_area (GsdWacomDevice *device)
 
 	g_return_val_if_fail (GSD_IS_WACOM_DEVICE (device), NULL);
 
+	if (!device->priv->gdk_device)
+		return NULL;
+
 	g_object_get (device->priv->gdk_device, "device-id", &id, NULL);
 
 	device_area = g_new0 (int, 4);
-- 
2.3.2