Fix runtime error regression in core::copy
This commit is contained in:
parent
3a9a6a34bb
commit
298c7bfe94
|
@ -480,7 +480,7 @@ export namespace core {
|
|||
void copy(slice<u8> const & target, slice<u8 const> const & origin) {
|
||||
if (target.length < origin.length) core::unreachable();
|
||||
|
||||
for (usize i = 0; i < target.length; i += 1) target[i] = origin[i];
|
||||
for (usize i = 0; i < origin.length; i += 1) target[i] = origin[i];
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue