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

Alexandre Julliard julliard at wine.codeweavers.com
Thu May 11 05:56:10 CDT 2006


Module: wine
Branch: refs/heads/master
Commit: ff6885495b7d23c99a04e035752b06101ca0d182
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=ff6885495b7d23c99a04e035752b06101ca0d182

Author: Mike McCormack <mike at 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;
 }




More information about the wine-cvs mailing list