From: <sta...@us...> - 2014-12-30 08:17:27
|
Revision: 60454 http://sourceforge.net/p/firebird/code/60454 Author: starodubov Date: 2014-12-30 08:17:19 +0000 (Tue, 30 Dec 2014) Log Message: ----------- Fixed CORE-4656: Server could hang during chasing dead record version Modified Paths: -------------- firebird/trunk/src/jrd/vio.cpp Modified: firebird/trunk/src/jrd/vio.cpp =================================================================== --- firebird/trunk/src/jrd/vio.cpp 2014-12-30 00:16:00 UTC (rev 60453) +++ firebird/trunk/src/jrd/vio.cpp 2014-12-30 08:17:19 UTC (rev 60454) @@ -842,7 +842,8 @@ if (rpb->rpb_b_page != temp.rpb_b_page || rpb->rpb_b_line != temp.rpb_b_line || rpb->rpb_f_page != temp.rpb_f_page || rpb->rpb_f_line != temp.rpb_f_line || - rpb->rpb_flags != temp.rpb_flags) + rpb->rpb_flags != temp.rpb_flags && + !(state == tra_dead && rpb->rpb_flags == (temp.rpb_flags | rpb_gc_active)) ) { CCH_RELEASE(tdbb, &rpb->getWindow(tdbb)); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |