Ignore:
Timestamp:
Feb 21, 2010, 5:32:45 PM (15 years ago)
Author:
rlwalsh
Message:

eliminate VACPP warning & info msgs - see Ticket #1

File:
1 edited

Legend:

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

    r10574 r21355  
    986986    InitializeCriticalSection( &PROFILE_CritSect );
    987987    MakeCriticalSectionGlobal( &PROFILE_CritSect );
     988    return 1;
    988989}
    989990
     
    14041405            while(*string) {
    14051406                LPSTR buf=HEAP_strdupA( GetProcessHeap(), 0, string );
    1406                 if((p=strchr( buf, '='))){
     1407                if((p=strchr( buf, '=')) != NULL){
    14071408                    *p='\0';
    14081409                    ret = PROFILE_SetString( section, buf, p+1 );
Note: See TracChangeset for help on using the changeset viewer.