|
From: <di...@us...> - 2013-07-15 13:44:49
|
Revision: 58352
http://sourceforge.net/p/firebird/code/58352
Author: dimitr
Date: 2013-07-15 13:44:47 +0000 (Mon, 15 Jul 2013)
Log Message:
-----------
A quick fix for the bugcheck appeared in test bugs.core_195.
Modified Paths:
--------------
firebird/trunk/src/jrd/vio.cpp
Modified: firebird/trunk/src/jrd/vio.cpp
===================================================================
--- firebird/trunk/src/jrd/vio.cpp 2013-07-15 13:06:57 UTC (rev 58351)
+++ firebird/trunk/src/jrd/vio.cpp 2013-07-15 13:44:47 UTC (rev 58352)
@@ -4485,6 +4485,9 @@
if (!transaction->tra_save_point)
return udNone;
+ if (rpb->rpb_stream_flags & RPB_s_refetch)
+ return udNone;
+
VerbAction* action = transaction->tra_save_point->sav_verb_actions;
for (; action; action = action->vct_next)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|