Use correct sizeof in memset
This commit is contained in:
committed by
Axel Kohlmeyer
parent
0325047c01
commit
765fd7f763
@ -269,7 +269,7 @@ void WriteRestart::write(const std::string &file)
|
|||||||
|
|
||||||
double *buf;
|
double *buf;
|
||||||
memory->create(buf,max_size,"write_restart:buf");
|
memory->create(buf,max_size,"write_restart:buf");
|
||||||
memset(buf,0,max_size*sizeof(buf));
|
memset(buf,0,max_size*sizeof(double));
|
||||||
|
|
||||||
// all procs write file layout info which may include per-proc sizes
|
// all procs write file layout info which may include per-proc sizes
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user