Commit 198917ee authored by Tim Clem's avatar Tim Clem Committed by Alexandre Julliard

wow64: Correct a reversed strcpy in wow64_NtQuerySystemInformation(SystemModuleInformation).

parent 79140eb2
......@@ -393,7 +393,7 @@ NTSTATUS WINAPI wow64_NtQuerySystemInformation( UINT *args )
info32->Modules[i].InitOrderIndex = info->Modules[i].InitOrderIndex;
info32->Modules[i].LoadCount = info->Modules[i].LoadCount;
info32->Modules[i].NameOffset = info->Modules[i].NameOffset;
strcpy( (char *)info->Modules[i].Name, (char *)info32->Modules[i].Name );
strcpy( (char *)info32->Modules[i].Name, (char *)info->Modules[i].Name );
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment