List:Commits« Previous MessageNext Message »
From:Stewart Smith Date:April 6 2006 9:03am
Subject:bk commit into 5.1 tree (stewart:1.2270) BUG#18831
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 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.2270 06/04/06 17:02:56 stewart@stripped +1 -0
  BUG#18831 Valgrind: cond jmp on uninit during ndb_dd_dump test

  storage/ndb/src/common/debugger/signaldata/DictTabInfo.cpp
    1.14 06/04/06 17:02:37 stewart@stripped +3 -1
    fix memset call
    initialize LF_UndoFreeWords(Hi|Lo)

# 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.1/new-bug18831

--- 1.13/storage/ndb/src/common/debugger/signaldata/DictTabInfo.cpp	2006-03-06 21:11:15
+11:00
+++ 1.14/storage/ndb/src/common/debugger/signaldata/DictTabInfo.cpp	2006-04-06 17:02:37
+10:00
@@ -244,8 +244,10 @@
   TS_DataGrow.GrowLimit = 0;
   TS_DataGrow.GrowSizeHi = 0;
   TS_DataGrow.GrowSizeLo = 0;
-  memset(TS_DataGrow.GrowPattern, sizeof(TS_DataGrow.GrowPattern), 0);
+  memset(TS_DataGrow.GrowPattern, 0, sizeof(TS_DataGrow.GrowPattern));
   TS_DataGrow.GrowMaxSize = 0;
+  LF_UndoFreeWordsHi= 0;
+  LF_UndoFreeWordsLo= 0;
 }
 
 void
Thread
bk commit into 5.1 tree (stewart:1.2270) BUG#18831Stewart Smith6 Apr