Merge mysql.com:/home/jimw/my/mysql-4.1-9323

into mysql.com:/home/jimw/my/mysql-4.1-clean
This commit is contained in:
jimw@mysql.com 2005-03-25 09:45:58 -08:00
commit 4f19826d80
3 changed files with 4 additions and 4 deletions

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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