mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-04 21:52:44 +00:00
Bug 561848 - signed/unsigned mismatch in nsNavHistoryContainerResultNode::GetChildIndex. r=dietrich
This commit is contained in:
parent
fd9f80195c
commit
ea4adc76ab
@ -1967,10 +1967,11 @@ nsNavHistoryContainerResultNode::GetChildIndex(nsINavHistoryResultNode* aNode,
|
||||
if (!mExpanded)
|
||||
return NS_ERROR_NOT_AVAILABLE;
|
||||
|
||||
*_retval = FindChild(static_cast<nsNavHistoryResultNode*>(aNode));
|
||||
if (*_retval == -1)
|
||||
PRInt32 nodeIndex = FindChild(static_cast<nsNavHistoryResultNode*>(aNode));
|
||||
if (nodeIndex == -1)
|
||||
return NS_ERROR_INVALID_ARG;
|
||||
|
||||
*_retval = nodeIndex;
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user