[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:40:42 UTC 2009
The following commit has been merged in the debian/unstable branch:
commit ba76d4f7519a0594dbf3fd652ca41a68b2159ceb
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Tue May 6 20:28:10 2003 +0000
- fixed crash on startup
* History.subproj/WebHistoryItem.m:
(-[WebHistoryItem initWithURLString:title:lastVisitedTimeInterval:]):
Allocate WebHistoryItemPrivate.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4292 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index c050b36..15595cd 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,13 @@
2003-05-06 Darin Adler <darin at apple.com>
+ - fixed crash on startup
+
+ * History.subproj/WebHistoryItem.m:
+ (-[WebHistoryItem initWithURLString:title:lastVisitedTimeInterval:]):
+ Allocate WebHistoryItemPrivate.
+
+2003-05-06 Darin Adler <darin at apple.com>
+
- fixed 3249211 -- WebTextRenderer.h should not use "AttributeGroup" type for styleGroup
* WebCoreSupport.subproj/WebTextRenderer.h: Update to use ATSStyleGroupPtr.
diff --git a/WebKit/History.subproj/WebHistoryItem.m b/WebKit/History.subproj/WebHistoryItem.m
index f757f19..c53fbcd 100644
--- a/WebKit/History.subproj/WebHistoryItem.m
+++ b/WebKit/History.subproj/WebHistoryItem.m
@@ -82,6 +82,7 @@ static NSString *WebDisplayTitleKey = @"displayTitle";
- (id)initWithURLString:(NSString *)URLString title:(NSString *)title lastVisitedTimeInterval:(NSTimeInterval)time
{
self = [super init];
+ _private = [[WebHistoryItemPrivate alloc] init];
_private->lastVisitedTimeInterval = time;
_private->title = [title copy];
_private->URLString = [URLString copy];
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list