Changeset 809 for trunk/core/conf.c


Ignore:
Timestamp:
09/27/09 01:27:16 (4 years ago)
Author:
reyalp
Message:

fix incorrect sanity check in conf.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/core/conf.c

    r760 r809  
    565565    conf_load_defaults(); 
    566566 
    567     if( stat(CONF_FILE,&st) != 0 && st.st_size < sizeof(int)) 
     567    if( stat(CONF_FILE,&st) != 0 || st.st_size < sizeof(int)) 
    568568        return; 
    569569 
Note: See TracChangeset for help on using the changeset viewer.