summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gusb/gusb-device-event.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gusb/gusb-device-event.c b/gusb/gusb-device-event.c
index 9d3aa4e..4f38131 100644
--- a/gusb/gusb-device-event.c
+++ b/gusb/gusb-device-event.c
@@ -57,7 +57,7 @@ _g_usb_device_event_load(GUsbDeviceEvent *self, JsonObject *json_object, GError
#if JSON_CHECK_VERSION(1, 6, 0)
/* optional properties */
- self->id = json_object_get_string_member_with_default(json_object, "Id", NULL);
+ self->id = g_strdup(json_object_get_string_member_with_default(json_object, "Id", NULL));
/* extra data */
str = json_object_get_string_member_with_default(json_object, "Data", NULL);