From: bdash Date: Mon, 9 Oct 2006 03:23:23 +0000 (+0000) Subject: Release build fix: silence warning about unused variable. X-Git-Url: https://git.webkit.org/?p=WebKit-https.git;a=commitdiff_plain;h=6803904048a5c8bd39db261913a354d99e9694bc Release build fix: silence warning about unused variable. git-svn-id: https://svn.webkit.org/repository/webkit/trunk@16906 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/WebKit/WebView/WebFrame.m b/WebKit/WebView/WebFrame.m index d49adf0f59a2..dd1a2297f429 100644 --- a/WebKit/WebView/WebFrame.m +++ b/WebKit/WebView/WebFrame.m @@ -1783,10 +1783,8 @@ static inline WebFrame *Frame(WebCoreFrameBridge *bridge) - (void)_updateHistoryForInternalLoad { - WebDataSource *dataSource = [[self _frameLoader] dataSource]; - // Add an item to the item tree for this frame - ASSERT(![[dataSource _documentLoader] isClientRedirect]); + ASSERT(![[[[self _frameLoader] dataSource] _documentLoader] isClientRedirect]); WebFrame *parentFrame = [self parentFrame]; if (parentFrame) { WebHistoryItem *parentItem = parentFrame->_private->currentItem;