From 401e6d4f49f3cd3f9efd175ad6959eea2f9dcde8 Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Fri, 7 Mar 2025 01:19:20 +0100 Subject: [PATCH] tests/benchmark: Address Cppcheck 2.17.1 warning about malloc returning NULL --- expat/tests/benchmark/benchmark.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/expat/tests/benchmark/benchmark.c b/expat/tests/benchmark/benchmark.c index a3e3741a..bf62f8da 100644 --- a/expat/tests/benchmark/benchmark.c +++ b/expat/tests/benchmark/benchmark.c @@ -121,6 +121,12 @@ main(int argc, char *argv[]) { } XMLBuf = malloc(fileAttr.st_size); + if (XMLBuf == NULL) { + fclose(file); + close(fd); + fprintf(stderr, "ouf of memory.\n"); + return 5; + } fileSize = fread(XMLBuf, sizeof(char), fileAttr.st_size, file); fclose(file); close(fd);