Changeset 6366 for trunk/src


Ignore:
Timestamp:
Jul 19, 2001, 10:00:56 PM (24 years ago)
Author:
sandervl
Message:

lstrncmpiA/W fixes

Location:
trunk/src/kernel32
Files:
2 edited

Legend:

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

    r6318 r6366  
    1 /* $Id: heapstring.cpp,v 1.41 2001-07-13 14:33:00 sandervl Exp $ */
     1/* $Id: heapstring.cpp,v 1.42 2001-07-19 20:00:56 sandervl Exp $ */
    22
    33/*
     
    215215    do
    216216    {
    217       firstch = tolower(*str1);
    218       lastch = tolower(*str2);
     217      firstch = toupper(*str1);
     218      lastch = toupper(*str2);
    219219      str1++;
    220220      str2++;
     
    236236    do
    237237    {
    238       firstch = tolowerW(*str1);
    239       lastch = tolowerW(*str2);
     238      firstch = toupperW(*str1);
     239      lastch = toupperW(*str2);
    240240      str1++;
    241241      str2++;
  • trunk/src/kernel32/os2heap.cpp

    r6354 r6366  
    1 /* $Id: os2heap.cpp,v 1.20 2001-07-17 12:10:21 sandervl Exp $ */
     1/* $Id: os2heap.cpp,v 1.21 2001-07-19 20:00:56 sandervl Exp $ */
    22
    33/*
     
    5757  heapelem     = NULL;
    5858
     59  dwInitialSize       = (dwInitialSize >= 0x4000) ? dwInitialSize : 0x4000;
     60
    5961  this->dwMaximumSize = dwMaximumSize;
    60   this->dwInitialSize = (dwInitialSize) ? dwInitialSize : 0x4000;
     62  this->dwInitialSize = dwInitialSize;
    6163  this->flOptions     = flOptions;
    6264
Note: See TracChangeset for help on using the changeset viewer.