- fix assertion which I accidentally changed to one that sometimes fails
http://bugzilla.opendarwin.org/show_bug.cgi?id=10531
* Loader/WebDocumentLoadState.m:
(-[WebDocumentLoadState dealloc]):
* WebView/WebDataSource.m:
(-[WebDataSourcePrivate dealloc]):
(-[WebDataSource dealloc]):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@16007
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-08-23 Maciej Stachowiak <mjs@apple.com>
+
+ Reviewed by Adele.
+
+ - fix assertion which I accidentally changed to one that sometimes fails
+ http://bugzilla.opendarwin.org/show_bug.cgi?id=10531
+
+ * Loader/WebDocumentLoadState.m:
+ (-[WebDocumentLoadState dealloc]):
+ * WebView/WebDataSource.m:
+ (-[WebDataSourcePrivate dealloc]):
+ (-[WebDataSource dealloc]):
+
2006-08-23 Maciej Stachowiak <mjs@apple.com>
Reviewed by Brady.
- (void)dealloc
{
- ASSERT(![frameLoader isLoading]);
-
[mainResourceData release];
[super dealloc];
- (void)dealloc
{
- ASSERT(![[webFrame _frameLoader] isLoading]);
-
[loadState release];
[representation release];
- (void)dealloc
{
+ ASSERT([[_private->webFrame _frameLoader] activeDataSource] != self || ![[_private->webFrame _frameLoader] isLoading]);
+
--WebDataSourceCount;
[_private release];