зеркало из https://github.com/mozilla/gecko-dev.git
fix check for null result when threading
This commit is contained in:
Родитель
6aa7b08020
Коммит
b7c575997c
|
@ -791,7 +791,7 @@ nsresult nsMsgThread::GetChildHdrForKey(nsMsgKey desiredKey, nsIMsgDBHdr **resul
|
|||
for (childIndex = 0; childIndex < numChildren; childIndex++)
|
||||
{
|
||||
rv = GetChildHdrAt(childIndex, result);
|
||||
if (NS_SUCCEEDED(rv) && result)
|
||||
if (NS_SUCCEEDED(rv) && *result)
|
||||
{
|
||||
nsMsgKey msgKey;
|
||||
// we're only doing one level of threading, so check if caller is
|
||||
|
|
Загрузка…
Ссылка в новой задаче