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


git-svn-id: svn://10.0.0.236/trunk@81806 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
cls%seawood.org
2000-10-26 08:28:16 +00:00
parent d35d4b035b
commit c23bfa0d33
3 changed files with 6 additions and 5 deletions

2
mozilla/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