From: Date: December 13 2007 12:03pm Subject: bk commit into 5.0 tree (tomas:1.2577) BUG#33206 List-Archive: http://lists.mysql.com/commits/39884 X-Bug: 33206 Message-Id: <20071213110315.9A47218D6C529@linux.local> Below is the list of changes that have just been committed into a local 5.0 repository of tomas. When tomas does a push these changes will be propagated to the main repository and, within 24 hours after the push, to the public repository. For information on how to access the public repository see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html ChangeSet@stripped, 2007-12-13 12:03:11+01:00, tomas@stripped +1 -0 Bug #33206 signal not reset properly in ndb ndb/src/kernel/vm/SimulatedBlock.cpp@stripped, 2007-12-13 12:03:09+01:00, tomas@stripped +2 -0 Bug #33206 signal not reset properly in ndb diff -Nrup a/ndb/src/kernel/vm/SimulatedBlock.cpp b/ndb/src/kernel/vm/SimulatedBlock.cpp --- a/ndb/src/kernel/vm/SimulatedBlock.cpp 2006-12-23 20:04:17 +01:00 +++ b/ndb/src/kernel/vm/SimulatedBlock.cpp 2007-12-13 12:03:09 +01:00 @@ -1012,6 +1012,7 @@ SimulatedBlock::assembleFragments(Signal /** * Don't release allocated segments */ + signal->header.m_fragmentInfo = 0; signal->header.m_noOfSections = 0; return false; } @@ -1039,6 +1040,7 @@ SimulatedBlock::assembleFragments(Signal * fragInfo = 2 */ if(fragInfo == 2){ + signal->header.m_fragmentInfo = 0; signal->header.m_noOfSections = 0; return false; }