From: Date: June 20 2006 9:29am Subject: bk commit into 5.0 tree (stewart:1.2097) BUG#20333 List-Archive: http://lists.mysql.com/commits/7897 X-Bug: 20333 Message-Id: <20060620072908.C7DAB142E41A@localhost.localdomain> Below is the list of changes that have just been committed into a local 5.0 repository of stewart. When stewart 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 1.2097 06/06/20 17:29:02 stewart@stripped +1 -0 BUG#20333 valgrind: mgmd event reporting dep on uninit value ndb/src/mgmsrv/MgmtSrvr.cpp 1.97 06/06/20 17:28:58 stewart@stripped +1 -1 user correct pointer # This is a BitKeeper patch. What follows are the unified diffs for the # set of deltas contained in the patch. The rest of the patch, the part # that BitKeeper cares about, is below these diffs. # User: stewart # Host: willster.(none) # Root: /home/stewart/Documents/MySQL/5.0/bugsmerge --- 1.96/ndb/src/mgmsrv/MgmtSrvr.cpp 2006-04-07 20:00:59 +10:00 +++ 1.97/ndb/src/mgmsrv/MgmtSrvr.cpp 2006-06-20 17:28:58 +10:00 @@ -1797,7 +1797,7 @@ break; case GSN_EVENT_REP: { - EventReport *rep = CAST_PTR(EventReport, signal->getDataPtrSend()); + EventReport *rep = (EventReport*) signal->getDataPtr(); if (rep->getNodeId() == 0) rep->setNodeId(refToNode(signal->theSendersBlockRef)); eventReport(signal->getDataPtr());