Skip to content

Commit 019c1e5

Browse files
committed
Merge fixes
1 parent 830b97d commit 019c1e5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/DllManipulator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -706,7 +706,7 @@ public class DllManipulatorOptions
706706
public DllManipulatorOptions CloneTo(DllManipulatorOptions other)
707707
{
708708
other.dllPathPattern = dllPathPattern;
709-
other.assemblyNames = (string[]) assemblyNames.Clone();
709+
other.assemblyNames = assemblyNames.Select(item => (string)item.Clone()).ToList();
710710
other.loadingMode = loadingMode;
711711
other.posixDlopenFlags = posixDlopenFlags;
712712
other.threadSafe = threadSafe;

0 commit comments

Comments
 (0)