update ooo310-m15
[ooovba.git] / applied_patches / 0410-fix-doc-exit-basic-error-core.diff
blob48de34fcdc0172f624118f1f0a51dbd747791843
1 Index: sfx2/source/appl/app.cxx
2 ===================================================================
3 --- sfx2/source/appl/app.cxx (revision 268722)
4 +++ sfx2/source/appl/app.cxx (working copy)
5 @@ -753,7 +753,7 @@
6 basicide_handle_basic_error pSymbol = (basicide_handle_basic_error) osl_getFunctionSymbol( handleMod, aSymbol.pData );
8 // call basicide_handle_basic_error in basctl
9 - long nRet = pSymbol( pStarBasic );
10 + long nRet = pSymbol ? pSymbol( pStarBasic ) : 0;
12 return nRet;