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.2271 06/04/06 17:13:17 stewart@stripped +1 -0
BUG#18831 Valgrind: cond jmp on uninit during ndb_dd_dump test
don't know why this didn't generate a warning, but let's fix it too.
storage/ndb/src/common/debugger/signaldata/DictTabInfo.cpp
1.15 06/04/06 17:13:11 stewart@stripped +1 -1
fix reversed memset
# 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.14/storage/ndb/src/common/debugger/signaldata/DictTabInfo.cpp 2006-04-06 17:02:37
+10:00
+++ 1.15/storage/ndb/src/common/debugger/signaldata/DictTabInfo.cpp 2006-04-06 17:13:11
+10:00
@@ -233,7 +233,7 @@
void
DictFilegroupInfo::Filegroup::init(){
- memset(FilegroupName, sizeof(FilegroupName), 0);
+ memset(FilegroupName, 0, sizeof(FilegroupName));
FilegroupType = ~0;
FilegroupId = ~0;
FilegroupVersion = ~0;
| Thread |
|---|
| • bk commit into 5.1 tree (stewart:1.2271) BUG#18831 | Stewart Smith | 6 Apr |