summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathon Jongsma <jjongsma@redhat.com>2016-04-13 10:46:16 -0500
committerJonathon Jongsma <jjongsma@redhat.com>2016-04-13 15:25:18 -0500
commit266d0bbc05bf62f198e89de79b4fad63990c6f30 (patch)
tree6150aa7e056b2fe0ce604851d04337890290ac94
parent4ad1cf38af84126fb45822fdcb24bcd42faed184 (diff)
char device: use _reset_dev_instance() to set 'sin'review-20160413review-20160407
Internally, use the method to set the 'sin' member variable so that we don't have to duplicate the g_object_notify() calls, and there are consistent debug statements whenever this value is modified. This also means that we need to handle NULL arguments to this function.
-rw-r--r--server/char-device.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/server/char-device.c b/server/char-device.c
index c7e6ecad..fbd93024 100644
--- a/server/char-device.c
+++ b/server/char-device.c
@@ -705,7 +705,8 @@ void red_char_device_reset_dev_instance(RedCharDevice *dev,
{
spice_debug("sin %p, char device %p", sin, dev);
dev->priv->sin = sin;
- sin->st = dev;
+ if (sin)
+ sin->st = dev;
g_object_notify(G_OBJECT(dev), "sin");
}
@@ -865,8 +866,7 @@ void red_char_device_reset(RedCharDevice *dev)
dev_client = SPICE_CONTAINEROF(client_item, RedCharDeviceClient, link);
red_char_device_client_send_queue_free(dev, dev_client);
}
- dev->priv->sin = NULL;
- g_object_notify(G_OBJECT(dev), "sin");
+ red_char_device_reset_dev_instance(dev, NULL);
}
void red_char_device_wakeup(RedCharDevice *dev)
@@ -1089,7 +1089,7 @@ red_char_device_set_property(GObject *object,
switch (property_id)
{
case PROP_CHAR_DEV_INSTANCE:
- self->priv->sin = g_value_get_pointer(value);
+ red_char_device_reset_dev_instance(self, g_value_get_pointer(value));
break;
case PROP_SPICE_SERVER:
self->priv->reds = g_value_get_pointer(value);