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

coverity#1242367 Unchecked return value

Change-Id: I899f97df32d943e61d7f0a125ae9ccea88b5374b
üst 41df2c5c
...@@ -231,9 +231,11 @@ executeSSLWarnDialog( ...@@ -231,9 +231,11 @@ executeSSLWarnDialog(
} }
OUString aTitle; OUString aTitle;
ErrorResource(aResId).getString( if (ErrorResource(aResId).getString(
ERRCODE_AREA_UUI_UNKNOWNAUTH + failure + TITLE, aTitle); ERRCODE_AREA_UUI_UNKNOWNAUTH + failure + TITLE, aTitle))
xDialog->SetText( aTitle ); {
xDialog->SetText(aTitle);
}
} }
return static_cast<bool>(xDialog->Execute()); return static_cast<bool>(xDialog->Execute());
......
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