]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/common/umapfile.cpp
ICU-62107.0.1.tar.gz
[apple/icu.git] / icuSources / common / umapfile.cpp
index df588a4f9502932dcd9b91b6d63e8ac351fb230a..53699e762b265dc1bd963687c7131ef49a5a5cd1 100644 (file)
     {
         HANDLE map;
         HANDLE file;
-        SECURITY_ATTRIBUTES mappingAttributes;
-        SECURITY_ATTRIBUTES *mappingAttributesPtr = NULL;
-        SECURITY_DESCRIPTOR securityDesc;
-
+        
         UDataMemory_init(pData); /* Clear the output struct.        */
 
         /* open the input file */
            This is required for multiuser systems on Windows 2000 SP4 and beyond */
         // TODO: UWP does not have this function and I do not think it is required?
 #if U_PLATFORM_HAS_WINUWP_API == 0
+
+        SECURITY_ATTRIBUTES mappingAttributes;
+        SECURITY_ATTRIBUTES *mappingAttributesPtr = NULL;
+        SECURITY_DESCRIPTOR securityDesc;
+
         if (InitializeSecurityDescriptor(&securityDesc, SECURITY_DESCRIPTOR_REVISION)) {
             /* give the security descriptor a Null Dacl done using the  "TRUE, (PACL)NULL" here */
             if (SetSecurityDescriptorDacl(&securityDesc, TRUE, (PACL)NULL, FALSE)) {