Ignore:
Timestamp:
Oct 14, 1999, 11:21:43 AM (26 years ago)
Author:
sandervl
Message:

Heap fixes + dll load bugfixes

File:
1 edited

Legend:

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

    r1131 r1280  
    1 /* $Id: heapstring.cpp,v 1.13 1999-10-04 20:52:33 sandervl Exp $ */
     1/* $Id: heapstring.cpp,v 1.14 1999-10-14 09:21:41 sandervl Exp $ */
    22
    33/*
     
    1212 * Includes                                                                  *
    1313 *****************************************************************************/
     14#undef DEBUG
    1415
    1516#include <os2win.h>
     
    275276             arg2,
    276277             arg2));
    277 //    return UniStrcmp( (UniChar*)arg1,
    278 //                      (UniChar*)arg2 );
     278
     279    if(arg1 == NULL)
     280      return -1;
     281    if(arg2 == NULL)
     282      return 1;
     283
    279284    return wcscmp( (wchar_t*)arg1,
    280285                   (wchar_t*)arg2 );
Note: See TracChangeset for help on using the changeset viewer.