mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-04 21:04:57 +00:00
tests/benchmark: Address Cppcheck 2.17.1 warning about malloc returning NULL
This commit is contained in:
parent
03fa6fa576
commit
401e6d4f49
1 changed files with 6 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue