| author | Caolán McNamara <caolanm@redhat.com> | 2010-11-03 10:16:06 (GMT) |
|---|---|---|
| committer | Caolán McNamara <caolanm@redhat.com> | 2010-11-03 10:16:06 (GMT) |
| commit | 698ee4170303e86b7ff67d0eee14cc0720bef06f (patch) (side-by-side diff) | |
| tree | 4d8903f6407e29b2c1bc5bce8ee31a63038b6c45 | |
| parent | 5a0406aa77feb8779200a7906f55c0176ceaafd6 (diff) | |
| download | core-698ee4170303e86b7ff67d0eee14cc0720bef06f.zip core-698ee4170303e86b7ff67d0eee14cc0720bef06f.tar.gz | |
abort doesn't gain us anything here.
abort doesn't gain us anything here except to force abrt automatic bugreports kick
in, and XIOErrors can't be worked around
| -rw-r--r-- | vcl/unx/source/plugadapt/salplug.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/source/plugadapt/salplug.cxx b/vcl/unx/source/plugadapt/salplug.cxx index 0accb8d..7398cc8 100644 --- a/vcl/unx/source/plugadapt/salplug.cxx +++ b/vcl/unx/source/plugadapt/salplug.cxx @@ -284,7 +284,7 @@ void SalAbort( const XubString& rErrorText ) std::fprintf( stderr, "Application Error" ); else std::fprintf( stderr, "%s", ByteString( rErrorText, gsl_getSystemTextEncoding() ).GetBuffer() ); - abort(); + exit(-1); } const OUString& SalGetDesktopEnvironment() |
