Backing out temp fix for bug #25562 (-LANG:exceptions=OFF CXXFLAGS).

Rerranging labels in nsMsgSend.cpp so that Irix CC won't complain about jumping to a label out of its region. Bug #25562 sr=mscott
This commit is contained in:
cls%seawood.org 2000-10-26 08:28:16 +00:00
parent 5d67dbf765
commit c894aafae5
3 changed files with 6 additions and 5 deletions

2
configure vendored
View File

@ -4182,7 +4182,7 @@ EOF
AR='$(CXX) -ar'
AR_FLAGS='-o $@'
CFLAGS="$CFLAGS -woff 3262"
CXXFLAGS="$CXXFLAGS -woff 3262 -LANG:exceptions=OFF"
CXXFLAGS="$CXXFLAGS -woff 3262"
if test -n "$USE_N32"; then
CFLAGS="$CFLAGS -n32"
CXXFLAGS="$CXXFLAGS -n32"

View File

@ -638,7 +638,7 @@ case "$target" in
AR='$(CXX) -ar'
AR_FLAGS='-o $@'
CFLAGS="$CFLAGS -woff 3262"
CXXFLAGS="$CXXFLAGS -woff 3262 -LANG:exceptions=OFF"
CXXFLAGS="$CXXFLAGS -woff 3262"
if test -n "$USE_N32"; then
CFLAGS="$CFLAGS -n32"
CXXFLAGS="$CXXFLAGS -n32"

View File

@ -1044,6 +1044,10 @@ nsMsgComposeAndSend::GatherMimeAttachments()
status = DeliverMessage();
shouldDeleteDeliveryState = PR_FALSE;
}
goto FAIL;
FAILMEM:
status = NS_ERROR_OUT_OF_MEMORY;
FAIL:
if (toppart)
@ -1070,9 +1074,6 @@ FAIL:
return status;
FAILMEM:
status = NS_ERROR_OUT_OF_MEMORY;
goto FAIL;
}
PRInt32