avoid an uninitialized memory access

This commit is contained in:
morse%netscape.com 1999-08-08 19:16:09 +00:00
parent 14fb9dbd1f
commit 79ba7c62b3
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));

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));