Bug 235498 Fix JS strict warning: anonymous function does not always return a value p=gautheri@noos.fr r=mscott sr=tor

This commit is contained in:
neil%parkwaycc.co.uk 2004-03-10 00:23:00 +00:00
parent 9a81ff1d79
commit 81a5c1d082

View File

@ -1134,7 +1134,8 @@ AutomatedAutoCompleteHandler.prototype =
if (gLDAPSession && gCurrentAutocompleteDirectory && this.searchResults[0] && this.searchResults[0].defaultItemIndex != -1)
{
return this.processAllResults();
this.processAllResults();
return;
}
}