Bug 938687 - Check the value of PR_Close() and issue warning when it is not PR_SUCCESS. r=bsmedberg

This commit is contained in:
ISHIKAWA, Chiaki 2013-12-04 17:46:20 -05:00
Родитель 4ca7fd46aa
Коммит fe0d3b4b5a
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -179,7 +179,11 @@ private:
MOZ_ASSERT(mFD);
PR_Close(mFD);
PRStatus prrc;
prrc = PR_Close(mFD);
if (prrc != PR_SUCCESS) {
NS_ERROR("PR_Close() failed.");
}
mFD = nullptr;
}
};