summaryrefslogtreecommitdiffstats
path: root/hl/test
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2021-10-17 13:09:29 (GMT)
committerGitHub <noreply@github.com>2021-10-17 13:09:29 (GMT)
commit9ad1d9073c2750d7675ef7296e6ad80d50fbdc0f (patch)
tree9186aefa19946da8793b744cacd08ce7680d6bca /hl/test
parent81af7d7f3a1ae148bf0816fb275e1a2365ab9deb (diff)
downloadhdf5-9ad1d9073c2750d7675ef7296e6ad80d50fbdc0f.zip
hdf5-9ad1d9073c2750d7675ef7296e6ad80d50fbdc0f.tar.gz
hdf5-9ad1d9073c2750d7675ef7296e6ad80d50fbdc0f.tar.bz2
Merge Fixed HL_test_packet, incorrect length assignment (#1101)
Diffstat (limited to 'hl/test')
-rw-r--r--hl/test/test_packet_vlen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hl/test/test_packet_vlen.c b/hl/test/test_packet_vlen.c
index c668a07..6d6bf34 100644
--- a/hl/test/test_packet_vlen.c
+++ b/hl/test/test_packet_vlen.c
@@ -539,8 +539,8 @@ test_VLof_VLtype(void)
HDfprintf(stderr, "Cannot allocate memory for VL data! uu=%u\n", uu);
goto error;
}
- t1->len = vv * 1;
- for (ww = 0; ww < (vv * 1); ww++)
+ t1->len = vv + 1;
+ for (ww = 0; ww < (vv + 1); ww++)
((unsigned int *)t1->p)[ww] = uu * 100 + vv * 10 + ww;
} /* end for */
} /* end for */