diff options
Diffstat (limited to 'sal/osl/unx')
-rw-r--r-- | sal/osl/unx/profile.cxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sal/osl/unx/profile.cxx b/sal/osl/unx/profile.cxx index a291d5a04df1..ac6a24f56142 100644 --- a/sal/osl/unx/profile.cxx +++ b/sal/osl/unx/profile.cxx @@ -1817,11 +1817,8 @@ static osl_TProfileImpl* acquireProfile(oslProfile Profile, bool bWriteable) if (memcmp(&Stamp, &(pProfile->m_Stamp), sizeof(osl_TStamp))) { - bool bRet = false; - pProfile->m_Stamp = Stamp; - - bRet=loadProfile(pProfile->m_pFile, pProfile); + bool bRet = loadProfile(pProfile->m_pFile, pProfile); SAL_WARN_IF(!bRet, "sal.osl", "loadProfile(pProfile->m_pFile, pProfile) ==> false"); (void)bRet; } |