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
parent ac569e89cd
commit 73ae517d85

View File

@ -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