Fix potentially uninitialized nsresult return value, regression from deCOMtamination patch. b=330305 r+sr=roc

git-svn-id: svn://10.0.0.236/trunk@218493 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
dbaron%dbaron.org 2007-01-17 05:16:13 +00:00
parent 64d5193436
commit 5e37eb9b0f

View File

@ -4160,7 +4160,7 @@ NS_IMETHODIMP PresShell::GetLinkLocation(nsIDOMNode* aNode, nsAString& aLocation
NS_IMETHODIMP
PresShell::GetSelectionForCopy(nsISelection** outSelection)
{
nsresult rv;
nsresult rv = NS_OK;
*outSelection = nsnull;