diff --git a/Assets/dll/libwaterboxhost.so b/Assets/dll/libwaterboxhost.so index d1dbab1840..ca8d6e99ae 100644 Binary files a/Assets/dll/libwaterboxhost.so and b/Assets/dll/libwaterboxhost.so differ diff --git a/Assets/dll/waterboxhost.dll b/Assets/dll/waterboxhost.dll index 74dd16b3fe..aa2d8d8ef3 100644 Binary files a/Assets/dll/waterboxhost.dll and b/Assets/dll/waterboxhost.dll differ diff --git a/waterbox/waterboxhost/src/elf.rs b/waterbox/waterboxhost/src/elf.rs index 0572c6e7f3..6595d770ca 100644 --- a/waterbox/waterboxhost/src/elf.rs +++ b/waterbox/waterboxhost/src/elf.rs @@ -148,7 +148,11 @@ impl ElfLoader { if prot_addr.size != 0 { // TODO: Using no_replace false here because the linker puts eh_frame_hdr in a separate segment that overlaps the other RO segment??? b.mmap_fixed(prot_addr, Protection::RW, false)?; - b.copy_from_external(&data[segment.file_range()], addr.start)?; + + let src_data = &data[segment.file_range()]; + if src_data.len() != 0 { + b.copy_from_external(src_data, addr.start)?; + } b.mprotect(prot_addr, prot)?; } }