tests/benchmark: Address Cppcheck 2.17.1 warning about malloc returning NULL

This commit is contained in:
Sebastian Pipping 2025-03-07 01:19:20 +01:00
parent 03fa6fa576
commit 401e6d4f49

View file

@ -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);