Kaydet (Commit) ae2cccdd authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Missing null check (triggered e.g. by CppunitTest_dbaccess_dialog_save)

Change-Id: I2f78ca59bfebbcffd9a6d0309c49179457bd9172
üst 47b52002
......@@ -686,7 +686,7 @@ void OAppDetailPageHelper::setDetailPage(Window* _pWindow)
bool bHasFocus = false;
m_aFL.Show();
{
bHasFocus = pCurrent->HasChildPathFocus();
bHasFocus = pCurrent != 0 && pCurrent->HasChildPathFocus();
_pWindow->Show();
}
m_aTBPreview.Show();
......
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