Changeset 5939 for trunk/src


Ignore:
Timestamp:
Jun 9, 2001, 9:46:01 PM (24 years ago)
Author:
sandervl
Message:

turned off heapcheck in writelogmisc.cpp

Location:
trunk/src/kernel32
Files:
3 edited

Legend:

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

    r5635 r5939  
    1 /* $Id: misc.cpp,v 1.36 2001-04-29 15:44:48 sandervl Exp $ */
     1/* $Id: misc.cpp,v 1.37 2001-06-09 19:46:00 sandervl Exp $ */
    22
    33/*
     
    252252static BOOL fDisableThread[5] = {0};
    253253
    254 #define CHECK_ODINHEAP
     254//#define CHECK_ODINHEAP
    255255#if defined(DEBUG) && defined(CHECK_ODINHEAP)
    256256int checkOdinHeap = 1;
  • trunk/src/kernel32/profile.cpp

    r5932 r5939  
    1 /* $Id: profile.cpp,v 1.29 2001-06-08 11:04:24 sandervl Exp $ */
     1/* $Id: profile.cpp,v 1.30 2001-06-09 19:46:01 sandervl Exp $ */
    22
    33/*
     
    253253                prev_key      = NULL;
    254254
    255                 dprintf(("Kernel32:Profile:New section: '%s'\n",section->name));
     255                dprintf2(("Kernel32:Profile:New section: '%s'\n",section->name));
    256256
    257257                continue;
     
    280280           prev_key   = key;
    281281
    282            dprintf(("Kernel32:Profile:New key: name='%s', value='%s'\n",key->name,key->value?key->value:"(none)"));
     282           dprintf2(("Kernel32:Profile:New key: name='%s', value='%s'\n",key->name,key->value?key->value:"(none)"));
    283283          }
    284284    }
  • trunk/src/kernel32/wprocess.cpp

    r5932 r5939  
    1 /* $Id: wprocess.cpp,v 1.121 2001-06-08 11:04:26 sandervl Exp $ */
     1/* $Id: wprocess.cpp,v 1.122 2001-06-09 19:46:01 sandervl Exp $ */
    22
    33/*
     
    16101610    // it is also valid in Win32.
    16111611    DWORD dwError = GetLastError();
    1612     if (ERROR_INVALID_EXE_SIGNATURE != dwError)
     1612    if (ERROR_INVALID_EXE_SIGNATURE != dwError && ERROR_FILE_NOT_FOUND != dwError)
    16131613    {
    16141614        dprintf(("CreateProcess: O32_CreateProcess failed with rc=%d, not PE-executable !",
Note: See TracChangeset for help on using the changeset viewer.