mirror of
https://github.com/brl/mutter.git
synced 2024-11-10 07:56:14 -05:00
input-device: Guard against double free
Dispose() may be called more than once, so calling g_free directly on the device name is unsafe. Instead, use g_clear_pointer() to make sure we don't attempt to free the memory again. https://bugzilla.gnome.org/show_bug.cgi?id=719563
This commit is contained in:
parent
9a471cf08d
commit
f6ad53d9e0
@ -79,7 +79,7 @@ clutter_input_device_dispose (GObject *gobject)
|
||||
{
|
||||
ClutterInputDevice *device = CLUTTER_INPUT_DEVICE (gobject);
|
||||
|
||||
g_free (device->device_name);
|
||||
g_clear_pointer (&device->device_name, g_free);
|
||||
|
||||
if (device->associated != NULL)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user