From 44d71da97fd6037b37927ac2ab6c59cdd82d00e2 Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Sat, 1 Apr 2006 11:56:36 +0000 Subject: Fix crash when cancelling the prompt before the timeout has run. 2006-04-01 Christian Persch * embed/mozilla/EphyPromptService.cpp: Fix crash when cancelling the prompt before the timeout has run. --- embed/mozilla/EphyPromptService.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'embed/mozilla') diff --git a/embed/mozilla/EphyPromptService.cpp b/embed/mozilla/EphyPromptService.cpp index bee062ddf..4f3d1446c 100644 --- a/embed/mozilla/EphyPromptService.cpp +++ b/embed/mozilla/EphyPromptService.cpp @@ -454,11 +454,10 @@ EnableResponse (GtkDialog *aDialog) } static void -RemoveTimeout (GObject *aDialog) +RemoveTimeout (gpointer idptr) { - guint timeout; + guint timeout = GPOINTER_TO_UINT (idptr); - timeout = GPOINTER_TO_UINT (g_object_get_data (aDialog, TIMEOUT_DATA_KEY)); g_return_if_fail (timeout != 0); g_source_remove (timeout); -- cgit v1.2.3