diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2018-10-27 15:11:25 +0300 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2018-10-27 15:30:59 +0200 |
commit | 6a12a9e941283fe32d7714d4aee694c397996c3a (patch) | |
tree | 2c83c288b5c4fa23ec60cc4aad99f0fd7988f9aa /sfx2 | |
parent | 2272b7e876dade3359b9f1fd1ae8a24e391bb8e5 (diff) |
tdf#120703 PVS: V530 The return value of function is required to be utilized
Change-Id: Ifc170a45e25b3fd5b7f561cc50afb6452bb359bd
Reviewed-on: https://gerrit.libreoffice.org/62420
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/appl/shutdowniconw32.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sfx2/source/appl/shutdowniconw32.cxx b/sfx2/source/appl/shutdowniconw32.cxx index b48b1e5e6875..b6fd1741a360 100644 --- a/sfx2/source/appl/shutdowniconw32.cxx +++ b/sfx2/source/appl/shutdowniconw32.cxx @@ -621,8 +621,7 @@ void OnDrawItem(HWND /*hwnd*/, LPDRAWITEMSTRUCT lpdis) hModule = GetModuleHandleW( pModuleName ); if ( hModule == nullptr ) { - LoadLibraryW( pModuleName ); - hModule = GetModuleHandleW( pModuleName ); + hModule = LoadLibraryW(pModuleName); } } |