1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-04-27 23:22:37 +02:00

tests: Fix fread wrap to return success by default

Successful return value for fread is the number of items read, and
default behaviour for all wraps is to return success.

This worked previously because all existing tests have custom mocks
for fread, so default behaviour hasn't been used. However next patch
in this chain adds new test which needs default fread wrap.

BUG=b:181803212
TEST=ninja test

Change-Id: I17d82d281a87129843f547b87c18f52aca23314d
Signed-off-by: Anastasia Klimchuk <aklm@chromium.org>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/58356
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
This commit is contained in:
Anastasia Klimchuk 2021-10-15 16:14:11 +11:00 committed by Nico Huber
parent 92989f2496
commit 99330d67b0

View File

@ -168,12 +168,12 @@ char *__wrap_fgets(char *buf, int len, FILE *fp)
return NULL;
}
size_t __wrap_fread(void *ptr, size_t size, size_t len, FILE *fp)
size_t __wrap_fread(void *ptr, size_t size, size_t nmemb, FILE *fp)
{
LOG_ME;
if (get_io() && get_io()->fread)
return get_io()->fread(get_io()->state, ptr, size, len, fp);
return 0;
return get_io()->fread(get_io()->state, ptr, size, nmemb, fp);
return nmemb;
}
size_t __wrap_fwrite(const void *ptr, size_t size, size_t nmemb, FILE *fp)