1
0
mirror of https://git.code.sf.net/p/zint/code synced 2026-05-14 18:13:53 +00:00

test suite: common: z_zero_fill: zeroize dest[] array

This commit is contained in:
gitlost
2026-04-27 01:16:00 +01:00
parent 0a3ffc1dc2
commit 0959e273a6

View File

@@ -216,7 +216,7 @@ static void test_zero_fill(const testCtx *const p_ctx) {
testStart(p_ctx->func_name); testStart(p_ctx->func_name);
for (i = 0; i < data_size; i++) { for (i = 0; i < data_size; i++) {
unsigned char dest[200]; unsigned char dest[20] = {0};
if (testContinue(p_ctx, i)) continue; if (testContinue(p_ctx, i)) continue;