From c6a5c3117c736fb89ac85e5ca6d6375c71cd4f20 Mon Sep 17 00:00:00 2001 From: Mitya Selivanov Date: Fri, 15 Sep 2023 22:17:51 +0200 Subject: win32: fix --- source/kit/shared_memory.win32.c | 1 - source/tests/file.test.c | 4 +--- 2 files changed, 1 insertion(+), 4 deletions(-) (limited to 'source') diff --git a/source/kit/shared_memory.win32.c b/source/kit/shared_memory.win32.c index 73175b1..34bb276 100644 --- a/source/kit/shared_memory.win32.c +++ b/source/kit/shared_memory.win32.c @@ -54,7 +54,6 @@ kit_shared_memory_t kit_shared_memory_open(kit_str_t name, i64 size, void *p = MapViewOfFile(h, FILE_MAP_ALL_ACCESS, 0, 0, (SIZE_T) size); - assert(p != NULL); if (p == NULL) { CloseHandle(h); mem.status = KIT_ERROR_MAP_FAILED; diff --git a/source/tests/file.test.c b/source/tests/file.test.c index 2a37c07..86a88e2 100644 --- a/source/tests/file.test.c +++ b/source/tests/file.test.c @@ -270,10 +270,8 @@ TEST("file map write") { REQUIRE_EQ(n, 3); fclose(f); - if (n == 3) { - printf("READ: %d %d %d \n", buf[0], buf[1], buf[2]); + if (n == 3) REQUIRE_EQ(memcmp(buf, "bar", 3), 0); - } file_remove(SZ("foo")); } -- cgit v1.2.3