From bf0f2651cfbc0be411c6bb32059ecf713402cf25 Mon Sep 17 00:00:00 2001 From: Madelyn Olson Date: Sun, 1 Sep 2024 03:05:37 -0700 Subject: [PATCH] Fix zipmap test null pointer (#975) The previous test does a strncmp on a NULL, which is not valid. It should be using an empty length string instead. Addresses https://github.com/valkey-io/valkey/actions/runs/10649272046/job/29519233939. Signed-off-by: Madelyn Olson --- src/unit/test_zipmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unit/test_zipmap.c b/src/unit/test_zipmap.c index 16b3c7acd..01bd6c8f5 100644 --- a/src/unit/test_zipmap.c +++ b/src/unit/test_zipmap.c @@ -91,7 +91,7 @@ int test_zipmapIterateThroughElements(int argc, char *argv[], int flags) { unsigned char *key, *value; unsigned int klen, vlen; char *expected_key[] = {"name", "surname", "age", "hello", "foo", "noval"}; - char *expected_value[] = {"foo", "foo", "foo", "world!", "12345", NULL}; + char *expected_value[] = {"foo", "foo", "foo", "world!", "12345", ""}; unsigned int expected_klen[] = {4, 7, 3, 5, 3, 5}; unsigned int expected_vlen[] = {3, 3, 3, 6, 5, 0}; int iter = 0;