Skip to content
Snippets Groups Projects
Commit dd6fbc0e authored by Guido Gunther's avatar Guido Gunther :zzz:
Browse files

lockscreen: make sure we don't disappear beneath our listener

Since the g_signal_emit() is not at the very end of the function one of
the listeners might free the lockscreen widget when receiving the
"lockscreen-unlock" signal. Hold a reference to prevent being cleaned up
before being done.
parent fae68e20
No related branches found
No related tags found
No related merge requests found
......@@ -125,6 +125,9 @@ keypad_number_notified_cb (PhoshLockscreen *self)
priv = phosh_lockscreen_get_instance_private (self);
number = hdy_dialer_get_number (HDY_DIALER (priv->dialer_keypad));
/* grab a ref, a listener to "lockscreen-unlock" might decrease the refcount */
g_object_ref (self);
if (strlen (number) == strlen (TEST_PIN)) {
if (!g_strcmp0 (number, TEST_PIN)) {
/* FIXME: handle real PIN
......@@ -137,6 +140,7 @@ keypad_number_notified_cb (PhoshLockscreen *self)
}
}
priv->last_input = g_get_monotonic_time ();
g_object_unref (self);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment