[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:27:31 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 55d5a920b728374b4b48d969d2d29b80146998ea
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Mar 5 16:23:14 2003 +0000

            Reviewed by John.
    
            - fixed 3189441 -- REGRESSION: layout tests crash building generated frame name
    
            * WebView.subproj/WebFramePrivate.m: (-[WebFrame _addFramePathToString:]):
            Handle a frame name of nil here, since we don't force the name "_top" any more.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3753 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 08452fa..74d5510 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,12 @@
+2003-03-05  Darin Adler  <darin at apple.com>
+
+        Reviewed by John.
+
+        - fixed 3189441 -- REGRESSION: layout tests crash building generated frame name
+
+        * WebView.subproj/WebFramePrivate.m: (-[WebFrame _addFramePathToString:]):
+        Handle a frame name of nil here, since we don't force the name "_top" any more.
+
 2003-03-04  Trey Matteson  <trey at apple.com>
 
 	Support for autofill.  These are just two new glue routines
diff --git a/WebKit/WebView.subproj/WebFramePrivate.m b/WebKit/WebView.subproj/WebFramePrivate.m
index 823334a..f968534 100644
--- a/WebKit/WebView.subproj/WebFramePrivate.m
+++ b/WebKit/WebView.subproj/WebFramePrivate.m
@@ -1665,7 +1665,9 @@ static CFAbsoluteTime _timeOfLastCompletedLoad;
             [_private->parent _addFramePathToString:path];
         }
         [path appendString:@"/"];
-        [path appendString:_private->name];
+        if (_private->name) {
+            [path appendString:_private->name];
+        }
     }
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list