diff options
author | Steve Hay <SteveHay@planit.com> | 2005-05-12 10:56:20 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2005-05-12 10:56:20 +0000 |
commit | 939d5c9d7fd5daa1517af4234ad971505e83f908 (patch) | |
tree | eb8f04830a5ea2aa9a084398467ee9797427e018 /win32 | |
parent | e364e11cbe4a80d9acc3833bfaa4404dc494d83f (diff) | |
download | perl-939d5c9d7fd5daa1517af4234ad971505e83f908.tar.gz |
Remove a couple of unreferenced local variables
p4raw-id: //depot/perl@24454
Diffstat (limited to 'win32')
-rw-r--r-- | win32/ext/Win32/Win32.xs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/win32/ext/Win32/Win32.xs b/win32/ext/Win32/Win32.xs index 5342dca752..529467a74d 100644 --- a/win32/ext/Win32/Win32.xs +++ b/win32/ext/Win32/Win32.xs @@ -232,7 +232,6 @@ XS(w32_LookupAccountSID) char Domain[256]; DWORD DomLen = sizeof(Domain); SID_NAME_USE snu; - long retval; STRLEN n_a; BOOL bResult; @@ -242,7 +241,6 @@ XS(w32_LookupAccountSID) sid = SvPV(ST(1), n_a); if (IsValidSid(sid)) { if (USING_WIDE()) { - WCHAR wSID[sizeof(SID)]; WCHAR wDomain[sizeof(Domain)]; WCHAR wSystem[MAX_PATH+1]; WCHAR wAccount[sizeof(Account)]; |