From cc981df924d6345715ae5a221ea5daa522f122e2 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 7 Apr 2026 14:33:31 -0400 Subject: NULL terminate keyword arrays --- src/lib/core/wheel.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/lib') diff --git a/src/lib/core/wheel.c b/src/lib/core/wheel.c index 02f74a4..96cc0cc 100644 --- a/src/lib/core/wheel.c +++ b/src/lib/core/wheel.c @@ -37,6 +37,7 @@ const char *WHEEL_META_KEY[] = { "Dynamic", "Description-Content-Type", "Description", + NULL, }; const char *WHEEL_DIST_KEY[] = { @@ -48,6 +49,7 @@ const char *WHEEL_DIST_KEY[] = { "Top-Level", "Entry-points", "Record", + NULL, }; static ssize_t wheel_parse_wheel(struct Wheel * pkg, const char * data) { -- cgit