Kaydet (Commit) caa5c53e authored tarafından David Tardon's avatar David Tardon

coverity#982450 Explicit null dereferenced

Change-Id: I7097ce6ffc86038966a2f436300f49b51ff81977
üst 45a11701
......@@ -181,7 +181,7 @@ namespace dbtools
case PROPERTY_ID_ACTIVE_CONNECTION: { rtl_uString_newFromAscii(&pStr,getPROPERTY_ID_ACTIVE_CONNECTION() ); break; }
}
m_aPropertyMap[_nIndex] = pStr;
return pStr;
return pStr ? OUString(pStr) : OUString();
}
}
......
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