Commit ff688549 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

advapi32: Fix a typo (spotted by Peter Berg Larsen).

parent 6ebbfd49
...@@ -103,7 +103,7 @@ NTSTATUS WINAPI SystemFunction032(struct ustring *data, struct ustring *key) ...@@ -103,7 +103,7 @@ NTSTATUS WINAPI SystemFunction032(struct ustring *data, struct ustring *key)
arc4_info a4i; arc4_info a4i;
arc4_init(&a4i, key->Buffer, key->Length); arc4_init(&a4i, key->Buffer, key->Length);
arc4_ProcessString(&a4i, data->Buffer, key->Length); arc4_ProcessString(&a4i, data->Buffer, data->Length);
return STATUS_SUCCESS; return STATUS_SUCCESS;
} }
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