You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2009/09/07 17:49:25 UTC

svn commit: r812208 - /commons/sandbox/runtime/trunk/src/main/native/os/win32/shm.c

Author: mturk
Date: Mon Sep  7 15:49:25 2009
New Revision: 812208

URL: http://svn.apache.org/viewvc?rev=812208&view=rev
Log:
Use read HANDLE

Modified:
    commons/sandbox/runtime/trunk/src/main/native/os/win32/shm.c

Modified: commons/sandbox/runtime/trunk/src/main/native/os/win32/shm.c
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/os/win32/shm.c?rev=812208&r1=812207&r2=812208&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/os/win32/shm.c (original)
+++ commons/sandbox/runtime/trunk/src/main/native/os/win32/shm.c Mon Sep  7 15:49:25 2009
@@ -385,7 +385,7 @@
         rc = ACR_GET_OS_ERROR();
         goto finally;
     }
-    rc = ACR_SetSecurityInfoD(m, SE_KERNEL_OBJECT, uid, gid, sd);
+    rc = ACR_SetSecurityInfoD(m->hmap, SE_KERNEL_OBJECT, uid, gid, sd);
 
 finally:
     ACR_THROW_IO_IF_ERR(rc);