fix an uninitialized warning, bug 155539 patch by karnaze@netscape.com r=alexsavulov sr=kin

This commit is contained in:
bernd.mielke@snafu.de
2003-01-04 10:49:50 +00:00
parent c5eb668244
commit 14a4135bab
2 changed files with 2 additions and 2 deletions

View File

@@ -11428,7 +11428,7 @@ nsCSSFrameConstructor::CreateContinuingFrame(nsIPresShell* aPresShell,
nsCOMPtr<nsIContent> content;
nsCOMPtr<nsIStyleContext> styleContext;
nsIFrame* newFrame = nsnull;
nsresult rv;
nsresult rv = NS_OK;
// Use the frame type to determine what type of frame to create
aFrame->GetFrameType(getter_AddRefs(frameType));