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

This commit is contained in:
Mike McCormack 2006-05-11 10:23:09 +09:00 committed by Alexandre Julliard
parent 6ebbfd4959
commit ff6885495b
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ NTSTATUS WINAPI SystemFunction032(struct ustring *data, struct ustring *key)
arc4_info a4i;
arc4_init(&a4i, key->Buffer, key->Length);
arc4_ProcessString(&a4i, data->Buffer, key->Length);
arc4_ProcessString(&a4i, data->Buffer, data->Length);
return STATUS_SUCCESS;
}