2
0
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:
Ed Hartnett 2011-01-04 13:26:55 +00:00
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++)
{