зеркало из https://github.com/mozilla/pjs.git
Bug 119843: negative voidarray index. r=rjesup@wgate.com, sr=waterson
This commit is contained in:
Родитель
7d6acfc966
Коммит
de846536c3
|
@ -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;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче