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

coverity#1326198 Dereference after null check

Change-Id: I3db353d04094ba47fe915ea5dc4d96fc4612cc68
üst 77c3b539
......@@ -191,7 +191,7 @@ public class Helper
}
}
return m_bShowInBrowser.booleanValue();
return m_bShowInBrowser != null ? m_bShowInBrowser.booleanValue() : false;
}
synchronized protected static void SetShowInBrowserByDefault( XComponentContext xContext, boolean bValue )
......
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