avoid an uninitialized memory access

This commit is contained in:
morse@netscape.com
1999-08-08 19:16:09 +00:00
parent f9ba3a8f03
commit d7e28a479c
2 changed files with 2 additions and 2 deletions

View File

@@ -4818,7 +4818,7 @@ nsCSSFrameConstructor::ContentRemoved(nsIPresContext* aPresContext,
// so here we see if it is a select and then we get the number of options
nsCOMPtr<nsIDOMHTMLSelectElement> selectElement;
nsresult result;
nsresult result = NS_ERROR_FAILURE;
if (aContainer) {
result = aContainer->QueryInterface(nsCOMTypeInfo<nsIDOMHTMLSelectElement>::GetIID(),
(void**)getter_AddRefs(selectElement));