[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677
sullivan
sullivan at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 05:56:19 UTC 2009
The following commit has been merged in the debian/unstable branch:
commit c68fe251863c51b114f94046b327bbbe4df42fc5
Author: sullivan <sullivan at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Tue Feb 26 23:24:35 2002 +0000
* History.subproj/IFURIEntry.m: (-[IFURIEntry dealloc]):
Added missing dealloc method that 'leaks' found.
* History.subproj/IFURIList.m: (-[IFURIList dealloc]):
Added missing [super dealloc] call that 'leaks' found.
* BrowserWindow.m:
(-[BrowserWindow toolbar:itemForItemIdentifier:willBeInsertedIntoToolbar:]):
Removed obsolete comment.
* LoadProgressMonitor.m: (-[LoadProgressMonitor dealloc]):
* SearchChannel.m: (-[SearchChannel dealloc]):
Added missing [super dealloc] calls that 'leaks' found.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@672 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index b56a1a4..553f3b3 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,11 @@
+2002-02-26 John Sullivan <sullivan at apple.com>
+
+ * History.subproj/IFURIEntry.m: (-[IFURIEntry dealloc]):
+ Added missing dealloc method that 'leaks' found.
+
+ * History.subproj/IFURIList.m: (-[IFURIList dealloc]):
+ Added missing [super dealloc] call that 'leaks' found.
+
2002-02-22 Maciej Stachowiak <mjs at apple.com>
Fix prebinding:
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index b56a1a4..553f3b3 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,11 @@
+2002-02-26 John Sullivan <sullivan at apple.com>
+
+ * History.subproj/IFURIEntry.m: (-[IFURIEntry dealloc]):
+ Added missing dealloc method that 'leaks' found.
+
+ * History.subproj/IFURIList.m: (-[IFURIList dealloc]):
+ Added missing [super dealloc] call that 'leaks' found.
+
2002-02-22 Maciej Stachowiak <mjs at apple.com>
Fix prebinding:
diff --git a/WebKit/History.subproj/IFURIEntry.m b/WebKit/History.subproj/IFURIEntry.m
index e6472b6..eb57704 100644
--- a/WebKit/History.subproj/IFURIEntry.m
+++ b/WebKit/History.subproj/IFURIEntry.m
@@ -55,6 +55,19 @@ id <WCURIEntry> WCCreateURIEntry(void)
return self;
}
+- (void)dealloc
+{
+ [_url release];
+ [_title release];
+ [_image release];
+ [_comment release];
+ [_creationDate release];
+ [_modificationDate release];
+ [_lastVisitedDate release];
+
+ [super dealloc];
+}
+
-(NSURL *)url
{
return _url;
diff --git a/WebKit/History.subproj/IFURIList.m b/WebKit/History.subproj/IFURIList.m
index 57814e6..e015246 100644
--- a/WebKit/History.subproj/IFURIList.m
+++ b/WebKit/History.subproj/IFURIList.m
@@ -68,6 +68,8 @@ static void freeNode(IFURIListNode *node)
curNode = curNode->next;
freeNode(delNode);
}
+
+ [super dealloc];
}
-(BOOL)allowsDuplicates
diff --git a/WebKit/History.subproj/WebHistoryItem.m b/WebKit/History.subproj/WebHistoryItem.m
index e6472b6..eb57704 100644
--- a/WebKit/History.subproj/WebHistoryItem.m
+++ b/WebKit/History.subproj/WebHistoryItem.m
@@ -55,6 +55,19 @@ id <WCURIEntry> WCCreateURIEntry(void)
return self;
}
+- (void)dealloc
+{
+ [_url release];
+ [_title release];
+ [_image release];
+ [_comment release];
+ [_creationDate release];
+ [_modificationDate release];
+ [_lastVisitedDate release];
+
+ [super dealloc];
+}
+
-(NSURL *)url
{
return _url;
diff --git a/WebKit/History.subproj/WebHistoryList.m b/WebKit/History.subproj/WebHistoryList.m
index 57814e6..e015246 100644
--- a/WebKit/History.subproj/WebHistoryList.m
+++ b/WebKit/History.subproj/WebHistoryList.m
@@ -68,6 +68,8 @@ static void freeNode(IFURIListNode *node)
curNode = curNode->next;
freeNode(delNode);
}
+
+ [super dealloc];
}
-(BOOL)allowsDuplicates
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list