8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 00:03:02 +01:00

Fixed bug in my recent refactoring, thanks to Adriano.

This commit is contained in:
dimitr 2013-05-04 16:19:07 +00:00
parent 80fd447426
commit 18ac6284b7

View File

@ -111,7 +111,7 @@ bool SingularStream::getRecord(thread_db* tdbb) const
{
record_param& rpb = request->req_rpb[m_streams[i]];
Record* orgRecord = rpb.rpb_record;
rpb = rpbs.pop();
rpb = rpbs[i];
const AutoPtr<Record> newRecord(rpb.rpb_record);
if (newRecord)