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/08/31 15:42:22 UTC

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

Author: mturk
Date: Mon Aug 31 13:42:22 2009
New Revision: 809591

URL: http://svn.apache.org/viewvc?rev=809591&view=rev
Log:
Use correct cleanup flag

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

Modified: commons/sandbox/runtime/trunk/src/main/native/os/win32/pmmap.c
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/os/win32/pmmap.c?rev=809591&r1=809590&r2=809591&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/os/win32/pmmap.c (original)
+++ commons/sandbox/runtime/trunk/src/main/native/os/win32/pmmap.c Mon Aug 31 13:42:22 2009
@@ -202,6 +202,6 @@
         ACR_SET_OS_ERROR(rc);
         return -1;
     }
-    rc = acr_ioh_open(map, ACR_DT_MMAP, 0, mmap_cleanup);
+    rc = acr_ioh_open(map, ACR_DT_MMAP, MMAP_OWNS_FILE, mmap_cleanup);
     return rc;
 }