summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source/kit/shared_memory.win32.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/kit/shared_memory.win32.c b/source/kit/shared_memory.win32.c
index c660fcd..c6cc3d3 100644
--- a/source/kit/shared_memory.win32.c
+++ b/source/kit/shared_memory.win32.c
@@ -45,7 +45,6 @@ kit_shared_memory_t kit_shared_memory_open(kit_str_t name, i64 size,
PAGE_READWRITE, 0, size, buf)
: OpenFileMappingA(FILE_MAP_ALL_ACCESS, 0, buf);
- assert(h != NULL);
if (h == NULL) {
mem.status = KIT_ERROR_SHM_OPEN_FAILED;
return mem;