Bug 914294 - Don't throw exceptions from the history result end batch macro to retain backwards compatibility.

r=mano
This commit is contained in:
Marco Bonardo 2013-10-15 14:30:33 +02:00
Родитель 3da4591020
Коммит 55f9714d25
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -61,8 +61,8 @@
#define END_RESULT_BATCH_AND_REFRESH_CONTENTS() \
PR_BEGIN_MACRO \
nsNavHistoryResult* result = GetResult(); \
NS_ENSURE_STATE(result); \
if (result->mBatchInProgress) { \
NS_WARN_IF_FALSE(result, "Working with a non-live-updating Places container"); \
if (result && result->mBatchInProgress) { \
result->EndBatch(); \
} \
PR_END_MACRO