Commit 405c3c9a authored by unknown's avatar unknown

DictTabInfo.cpp:

  Fix for bug#23169 - memset param switching


storage/ndb/src/common/debugger/signaldata/DictTabInfo.cpp:
  Fix for bug#23169 - memset param switching
parent 2e3ee93d
......@@ -263,7 +263,7 @@ DictFilegroupInfo::Filegroup::init(){
void
DictFilegroupInfo::File::init(){
memset(FileName, sizeof(FileName), 0);
memset(FileName, 0, sizeof(FileName));
FileType = ~0;
FileId = ~0;
FileVersion = ~0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment