Test for ORG directive (#228)

This commit is contained in:
2020-07-30 18:29:37 -04:00
parent ad0124508c
commit 319abad130
3 changed files with 29 additions and 2 deletions

View File

@@ -192,7 +192,7 @@ public class Memory implements Target, MongoSerializable, Cloneable {
public Memory clone() {
Memory memory = new Memory(words.length);
memory.words = new char[words.length];
System.arraycopy(memory.words, 0, words, 0, words.length);
System.arraycopy(words, 0, memory.words, 0, words.length);
return memory;
}
}