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

Assuming the double iteration is a copy/paste snafu

...causes "error: attempt to increment a past-the-end iterator." with debug-mode
libstdc++.

Change-Id: I89af3944b04ad6ab4ef3561d2aa91b5bab1edf20
üst 0423a674
......@@ -241,8 +241,6 @@ sal_Int32 MQueryHelper::executeQuery(OConnection* xConnection)
MorkRowMap *Rows = 0;
MorkRowMap::iterator rowIter;
for ( tableIter = Tables->begin(); tableIter != Tables->end(); tableIter++ )
{
// Iterate all tables
for ( tableIter = Tables->begin(); tableIter != Tables->end(); tableIter++ )
{
......@@ -278,7 +276,6 @@ sal_Int32 MQueryHelper::executeQuery(OConnection* xConnection)
}
}
}
}
return 0;
}
......
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