From: Steve Hay Date: Thu, 12 May 2005 10:56:20 +0000 (+0000) Subject: Remove a couple of unreferenced local variables X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=939d5c9d7fd5daa1517af4234ad971505e83f908;p=p5sagit%2Fp5-mst-13.2.git Remove a couple of unreferenced local variables p4raw-id: //depot/perl@24454 --- diff --git a/win32/ext/Win32/Win32.xs b/win32/ext/Win32/Win32.xs index 5342dca..529467a 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)];