Crash fix: Kill an extra NS_RELEASE in GetSelectedIndex

git-svn-id: svn://10.0.0.236/trunk@29560 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
pollmann%netscape.com 1999-04-27 22:17:57 +00:00
parent d40d103c73
commit d669c2bb5b
2 changed files with 0 additions and 2 deletions

View File

@ -328,7 +328,6 @@ nsHTMLSelectElement::GetSelectedIndex(PRInt32* aValue)
if (NS_OK == nsGenericHTMLElement::GetPrimaryFrame(this, formControlFrame)) {
nsString value;
formControlFrame->GetProperty(nsHTMLAtoms::selectedindex, value);
NS_RELEASE(formControlFrame);
if (value.Length() > 0) {
PRInt32 retval = 0;
PRInt32 error = 0;

View File

@ -328,7 +328,6 @@ nsHTMLSelectElement::GetSelectedIndex(PRInt32* aValue)
if (NS_OK == nsGenericHTMLElement::GetPrimaryFrame(this, formControlFrame)) {
nsString value;
formControlFrame->GetProperty(nsHTMLAtoms::selectedindex, value);
NS_RELEASE(formControlFrame);
if (value.Length() > 0) {
PRInt32 retval = 0;
PRInt32 error = 0;