RESOLVED FIXED 15212
Useless checking for Item in FrameLoader::goBackOrForward(int distance)
https://bugs.webkit.org/show_bug.cgi?id=15212
Summary Useless checking for Item in FrameLoader::goBackOrForward(int distance)
Maxime BRITTO
Reported 2007-09-14 07:22:57 PDT
There is no need to check if there is an item at this distance because the check has already been performed in a previously : This is the piece of code I'm talking about : ------------------------------------ HistoryItem* item = list->itemAtIndex(distance); if (!item) { if (distance > 0) { int forwardListCount = list->forwardListCount(); if (forwardListCount > 0) item = list->itemAtIndex(forwardListCount); } else { int backListCount = list->forwardListCount(); if (backListCount > 0) item = list->itemAtIndex(-backListCount); } } There are three calls for FrameLoader::goBackOrForward(int distance) : ----------------------------------------------------------- 1 - From FrameLoader::scheduleHistoryNavigation(int steps) -> which checks before the call if the step is "reachable" with canGoBackOrForward(steps). -> if the step is unreachable, goBackOrForward() isn't called at all 2 - From FrameLoader::redirectionTimerFired(Timer<FrameLoader>*) -> in case we have a ScheduledRedirection::historyNavigation -> a ScheduledRedirection::historyNavigation can only be created from scheduleHistoryNavigation() (see point 1) 3 - From ContextMenuController::contextMenuItemSelected(ContextMenuItem* item) -> the context menu choice "back" or "forward" is disabled if there no previous or next item - To sum up, I don't know how the item (from HistoryItem* item = list->itemAtIndex(distance);) in goBackOrForward() could be null. Moreover there is something wrong in this useless part of code : int backListCount = list->forwardListCount();
Attachments
proposed patch (1.54 KB, patch)
2007-09-14 07:51 PDT, Maxime BRITTO
no flags
modified patch (1.38 KB, patch)
2007-09-26 02:31 PDT, Maxime BRITTO
mitz: review+
Maxime BRITTO
Comment 1 2007-09-14 07:51:28 PDT
Created attachment 16290 [details] proposed patch I wasn't sure if I had to put an ASSERT for the item, so I didn't.
Maxime BRITTO
Comment 2 2007-09-26 02:31:24 PDT
Created attachment 16397 [details] modified patch After the talk mitzpettel and I had, we decided to let the check for the reachable item in the function because it's more conveniant for the future updates. Though I added an assert to help future debug. I let that last check to avoid an eventually crash on release versions : if (item) page->goToItem(item, FrameLoadTypeIndexedBackForward);
mitz
Comment 3 2007-09-26 03:07:31 PDT
Comment on attachment 16397 [details] modified patch r=me
Mark Rowe (bdash)
Comment 4 2007-10-14 04:59:29 PDT
Landed in r26588.
Note You need to log in before you can comment on or make changes to this bug.