Kaydet (Commit) 13763884 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1027273 Unchecked return value

Change-Id: I25c6b11fee909559a5f3bac7566fd161851ae14d
üst 900d3e33
...@@ -118,9 +118,7 @@ void FontWorkGalleryDialog::initFavorites(sal_uInt16 nThemeId) ...@@ -118,9 +118,7 @@ void FontWorkGalleryDialog::initFavorites(sal_uInt16 nThemeId)
{ {
BitmapEx aThumb; BitmapEx aThumb;
GalleryExplorer::GetSdrObj(nThemeId, nModelPos, pModel, &aThumb); if (GalleryExplorer::GetSdrObj(nThemeId, nModelPos, pModel, &aThumb) && !!aThumb)
if(!!aThumb)
{ {
VirtualDevice aVDev; VirtualDevice aVDev;
const Point aNull(0, 0); const Point aNull(0, 0);
......
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