Commit 8353d3e6 authored by mmj@tiger.local's avatar mmj@tiger.local

DictTabInfo.cpp:

  Fix for bug#23169 - memset param switching
parent a5e99f90
......@@ -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