[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 06:10:34 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 86391a467e792e72f881c92702d87b6d2c702448
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri May 3 18:07:05 2002 +0000

    	* AuthenticationManager.subproj/IFAuthenticationRequest.m:
    	(-[IFAuthenticationRequest initWithURL:realm:username:passwordSentInClear:previousFailures:callback:]):
    	* AuthenticationManager.subproj/IFAuthenticationResult.m:
    	(-[IFAuthenticationResult initWithUsername:password:]):
    	* Database.subproj/IFDatabase.m:
    	(-[IFDatabase initWithPath:]):
    	Simplify code by using [copy] instead of [NSString initWithString:].
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1091 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/Misc.subproj/WebDatabase.m b/WebKit/Misc.subproj/WebDatabase.m
index 16d7ab7..45cc163 100644
--- a/WebKit/Misc.subproj/WebDatabase.m
+++ b/WebKit/Misc.subproj/WebDatabase.m
@@ -52,7 +52,7 @@
 {
     if ((self = [super init])) {
     
-        path = [[NSString alloc] initWithString:[thePath stringByStandardizingPath]];
+        path = [[thePath stringByStandardizingPath] copy];
         isOpen = NO;
     
         return self;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list