Bug 119843: negative voidarray index. r=rjesup@wgate.com, sr=waterson

This commit is contained in:
rjesup%wgate.com 2002-01-16 07:03:26 +00:00
Родитель 7d6acfc966
Коммит de846536c3
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -533,7 +533,7 @@ NS_IMETHODIMP nsAbView::PerformActionOnCell(const PRUnichar *action, PRInt32 row
NS_IMETHODIMP nsAbView::GetCardFromRow(PRInt32 row, nsIAbCard **aCard)
{
if (mCards.Count() <= row) {
if ((mCards.Count() <= row) || (row < 0)) {
*aCard = nsnull;
return NS_OK;
}