зеркало из https://github.com/mozilla/pjs.git
Fix FindRow() to deal with null argument.
This commit is contained in:
Родитель
f834879a72
Коммит
8ae879a305
|
@ -2204,9 +2204,11 @@ nsSimpleGlobalHistory::FindRow(mdb_column aCol,
|
|||
|
||||
if (!hasRow) return NS_ERROR_NOT_AVAILABLE;
|
||||
|
||||
*aResult = row;
|
||||
(*aResult)->AddRef();
|
||||
|
||||
if (aResult) {
|
||||
*aResult = row;
|
||||
(*aResult)->AddRef();
|
||||
}
|
||||
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче