Kaydet (Commit) 3064d221 authored tarafından Fridrich Štrba's avatar Fridrich Štrba

Fix debug build

Change-Id: I1a4db30f4cc33ee99b48a25db6e6fcd600d00ffd
Reviewed-on: https://gerrit.libreoffice.org/3168Reviewed-by: 's avatarAndras Timar <atimar@suse.com>
Tested-by: 's avatarAndras Timar <atimar@suse.com>
(cherry picked from commit c976cd58)
üst a789a2fc
...@@ -272,7 +272,10 @@ namespace ...@@ -272,7 +272,10 @@ namespace
if ( !_rFunction ) if ( !_rFunction )
{ // did not find the symbol { // did not find the symbol
OSL_FAIL( ( ::rtl::OString( "lcl_getFunctionFromModuleOrUnload: could not find the symbol " ) + ::rtl::OString( _pAsciiSymbolName ) ).getStr() ); rtl::OUStringBuffer aBuf;
aBuf.append( "lcl_getFunctionFromModuleOrUnload: could not find the symbol " );
aBuf.append( sSymbolName );
OSL_FAIL( aBuf.makeStringAndClear().getStr() );
osl_unloadModule( _rModule ); osl_unloadModule( _rModule );
_rModule = NULL; _rModule = NULL;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment