Commit 0842efea authored by jimw@mysql.com's avatar jimw@mysql.com

Fix calls to memset() with arguments out of order. (Bug #9323)

parent 2a53e9d9
......@@ -489,7 +489,7 @@ __bam_new_file(dbp, txn, fhp, name)
goto err;
} else {
#ifdef DIAGNOSTIC
memset(buf, dbp->pgsize, 0);
memset(buf, 0, dbp->pgsize);
#endif
root = (PAGE *)buf;
}
......
......@@ -409,7 +409,7 @@ __ham_new_file(dbp, txn, fhp, name)
goto err;
} else {
#ifdef DIAGNOSTIC
memset(buf, dbp->pgsize, 0);
memset(buf, 0, dbp->pgsize);
#endif
page = (PAGE *)buf;
}
......
......@@ -18,8 +18,8 @@
#include <string.h>
Signal::Signal(){
memset(&header, sizeof(header), 0);
memset(theData, sizeof(theData), 0);
memset(&header, 0, sizeof(header));
memset(theData, 0, sizeof(theData));
}
void
......
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