Update fastimagehash.cpp

This commit is contained in:
simon987 2020-04-10 12:02:25 -04:00 committed by GitHub
parent 1d56ddeca8
commit 1e0b41f592
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -94,7 +94,7 @@ void *load_file_in_mem(const char *filepath, size_t *size) {
}
void *buf = malloc(info.st_size);
fread(buf, sizeof(char), info.st_size, file);
size_t _ = fread(buf, sizeof(char), info.st_size, file);
*size = info.st_size;
return buf;