[patch]change verify expression retval semantics:1(legal) 0(illegal)

This commit is contained in:
liuwentan
2023-05-11 11:21:46 +08:00
parent 7ce971902d
commit 929d6ac139
18 changed files with 450 additions and 463 deletions

View File

@@ -113,7 +113,6 @@ int load_file_to_memory(const char *file_name, unsigned char **pp_out, size_t *o
read_size = fread(*pp_out, 1, *out_sz, fp);
if (read_size != *out_sz) {
FREE(*pp_out);
return -1;
}
fclose(fp);