Ignore:
Timestamp:
Sep 5, 2000, 10:35:40 PM (25 years ago)
Author:
sandervl
Message:

RegSetValue workaround + HMOpenFile fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/HandleManager.cpp

    r4171 r4197  
    1 /* $Id: HandleManager.cpp,v 1.47 2000-09-03 09:32:06 sandervl Exp $ */
     1/* $Id: HandleManager.cpp,v 1.48 2000-09-05 20:35:38 sandervl Exp $ */
    22
    33/*
     
    10101010                     &pHMHandleData->dwShare);
    10111011
    1012   pHMHandleData->dwCreation = 0;
     1012  //SvL; Must be OPEN_EXISTING because mmaps depend on it (to duplicate
     1013  //     the file handle when this handle is a parameter for CreateFileMappingA/W
     1014  pHMHandleData->dwCreation = OPEN_EXISTING;
    10131015  pHMHandleData->dwFlags    = 0;
    10141016  pHMHandleData->lpHandlerData = NULL;
Note: See TracChangeset for help on using the changeset viewer.