Module: wine Branch: refs/heads/master Commit: ff6885495b7d23c99a04e035752b06101ca0d182 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=ff6885495b7d23c99a04e035...
Author: Mike McCormack mike@codeweavers.com Date: Thu May 11 10:23:09 2006 +0900
advapi32: Fix a typo (spotted by Peter Berg Larsen).
---
dlls/advapi32/crypt_arc4.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/advapi32/crypt_arc4.c b/dlls/advapi32/crypt_arc4.c index 2ba2b1a..9ee4b5e 100644 --- a/dlls/advapi32/crypt_arc4.c +++ b/dlls/advapi32/crypt_arc4.c @@ -103,7 +103,7 @@ NTSTATUS WINAPI SystemFunction032(struct 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; }