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

coverity#736137 Dereference null return value

Change-Id: Ie66e71e2aff49db5c0192fd0e787231081d24060
üst dc671f6d
...@@ -231,6 +231,8 @@ sal_Int32 MQueryHelper::executeQuery(OConnection* xConnection) ...@@ -231,6 +231,8 @@ sal_Int32 MQueryHelper::executeQuery(OConnection* xConnection)
} }
MorkTableMap::iterator tableIter; MorkTableMap::iterator tableIter;
MorkTableMap *Tables = xMork->getTables( 0x80 ); MorkTableMap *Tables = xMork->getTables( 0x80 );
if (!Tables)
return -1;
MorkRowMap *Rows = 0; MorkRowMap *Rows = 0;
MorkRowMap::iterator rowIter; MorkRowMap::iterator rowIter;
......
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