mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-03-31 17:50:26 +08:00
init data space to shut up valgrind
This commit is contained in:
parent
659fd84edb
commit
52d1a2b74e
@ -44,6 +44,10 @@ main()
|
||||
return NC_ENOMEM;
|
||||
memcpy((void *)data2, (void *)dummy, sizeof(struct s2) * DIM1_LEN);
|
||||
free(dummy);
|
||||
if (!(dummy = calloc(sizeof(struct s1), DIM1_LEN)))
|
||||
return NC_ENOMEM;
|
||||
memcpy((void *)data2, (void *)dummy, sizeof(struct s1) * DIM1_LEN);
|
||||
free(dummy);
|
||||
|
||||
for (i=0; i<DIM1_LEN; i++)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user