From 1f60c85aea4cdfd829c2c9ffcb1d5877a0278418 Mon Sep 17 00:00:00 2001 From: Jacob Hageman Date: Tue, 16 Feb 2021 13:31:59 -0500 Subject: [PATCH] Fix #814, UT Stub match macro behavior --- src/ut-stubs/osapi-utstub-file.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ut-stubs/osapi-utstub-file.c b/src/ut-stubs/osapi-utstub-file.c index 29a73f4c6..5ad90d9ec 100644 --- a/src/ut-stubs/osapi-utstub-file.c +++ b/src/ut-stubs/osapi-utstub-file.c @@ -48,7 +48,7 @@ static int32 UT_GenericReadStub(const char *fname, UT_EntryKey_t fkey, void *buf int32 status; size_t CopySize; - status = UT_DefaultStubImpl(fname, fkey, 0x7FFFFFFF); + status = UT_DefaultStubImpl(fname, fkey, 0x7FFFFFFF, NULL); if (status == 0x7FFFFFFF) { @@ -86,7 +86,7 @@ static int32 UT_GenericWriteStub(const char *fname, UT_EntryKey_t fkey, const vo int32 status; size_t CopySize; - status = UT_DefaultStubImpl(fname, fkey, 0x7FFFFFFF); + status = UT_DefaultStubImpl(fname, fkey, 0x7FFFFFFF, NULL); if (status == 0x7FFFFFFF) {