From 96fbac9b307cf07646a365ac2fe596932cf826f1 Mon Sep 17 00:00:00 2001 From: Sean McBride Date: Fri, 24 Sep 2021 17:16:45 -0400 Subject: [PATCH] chore: Remove unclear FIXME --- runtime/src/memory/common.c | 1 - 1 file changed, 1 deletion(-) diff --git a/runtime/src/memory/common.c b/runtime/src/memory/common.c index 35912be..a3b4939 100644 --- a/runtime/src/memory/common.c +++ b/runtime/src/memory/common.c @@ -11,7 +11,6 @@ initialize_region(uint32_t offset, uint32_t data_count, char *data) assert(local_sandbox_context_cache.memory.size >= data_count); assert(offset < local_sandbox_context_cache.memory.size - data_count); - /* FIXME: Hack around segmented and unsegmented access Issue #104 */ memcpy(get_memory_ptr_for_runtime(offset, data_count), data, data_count); }