[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

darin darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:16:34 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 24779788b4f6d4e953e2de0f38ab8922bd0f12a8
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Dec 19 18:14:23 2002 +0000

            Reviewed by John.
    
    	- probably fixed 3129395 -- Reproducible crash when running a javascript at www.scenespot.org
    
            * WebCoreSupport.subproj/WebViewFactory.m:
            (-[WebViewFactory runJavaScriptTextInputPanelWithPrompt:defaultText:returningText:]):
            Close the window. Before we relied on it being released which was bad. But it's not clear this
            actually was the cause of the bug.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3136 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index f3763eb..7c1c183 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,16 @@
 2002-12-19  Darin Adler  <darin at apple.com>
 
+        Reviewed by John.
+
+	- probably fixed 3129395 -- Reproducible crash when running a javascript at www.scenespot.org
+
+        * WebCoreSupport.subproj/WebViewFactory.m:
+        (-[WebViewFactory runJavaScriptTextInputPanelWithPrompt:defaultText:returningText:]):
+        Close the window. Before we relied on it being released which was bad. But it's not clear this
+        actually was the cause of the bug.
+
+2002-12-19  Darin Adler  <darin at apple.com>
+
         Reviewed by Chris.
 
         * Plugins.subproj/WebBaseNetscapePluginView.m:
diff --git a/WebKit/WebCoreSupport.subproj/WebViewFactory.m b/WebKit/WebCoreSupport.subproj/WebViewFactory.m
index 568c82f..41da289 100644
--- a/WebKit/WebCoreSupport.subproj/WebViewFactory.m
+++ b/WebKit/WebCoreSupport.subproj/WebViewFactory.m
@@ -44,6 +44,7 @@
     if (OK) {
         *result = [panel text];
     }
+    [[panel window] close];
     [panel release];
     return OK;
 }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list