Bug 626741 - Downgrade assertion to warning, for failed modifications to immutable urls. r=bz a=NPOTB (debug-only)

This commit is contained in:
Daniel Holbert 2011-01-20 19:49:09 -08:00
Родитель d0f690dcf9
Коммит 48e7cf6e14
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -88,7 +88,7 @@ static PRLogModuleInfo *gStandardURLLog;
#define ENSURE_MUTABLE() \
PR_BEGIN_MACRO \
if (!mMutable) { \
NS_ERROR("attempt to modify an immutable nsStandardURL"); \
NS_WARNING("attempt to modify an immutable nsStandardURL"); \
return NS_ERROR_ABORT; \
} \
PR_END_MACRO