diff options
author | sb <sb@openoffice.org> | 2010-01-18 13:05:16 +0100 |
---|---|---|
committer | sb <sb@openoffice.org> | 2010-01-18 13:05:16 +0100 |
commit | 2436ce79f3071ebd0b1ce4993342ea5f7f606566 (patch) | |
tree | 856a4e250251e53d44362e11be685d67046243d1 /sfx2 | |
parent | 0de34b05f3c1a0409d23b63b9e69d4d7abbe1090 (diff) |
sb119: #i108411# let SID_CRASH really crash
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/appl/appserv.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sfx2/source/appl/appserv.cxx b/sfx2/source/appl/appserv.cxx index 4580a11270e0..d100cc7bcdd5 100644 --- a/sfx2/source/appl/appserv.cxx +++ b/sfx2/source/appl/appserv.cxx @@ -551,8 +551,10 @@ void SfxApplication::MiscExec_Impl( SfxRequest& rReq ) case SID_CRASH : { - GetpApp()->Exception( EXC_SYSTEM ); - abort(); + // Provoke a crash: + char * crash = 0; + *crash = 0; + break; } case SID_SHOW_IME_STATUS_WINDOW: |