Changeset 415

Show
Ignore:
Timestamp:
Wed Feb 6 13:00:19 2008
Author:
giovannibajo
Message:

Try Stefan Oblingers's patch from the mailing list.

Files:

Legend:

Unmodified
Added
Removed
Modified
  • branches/startup_crash/source/common/launch.c

    r330 r415  
    1068 1068         if ( finfo.attrib & _A_SUBDIR )  
    1069 1069                 clear(fnm);  
    1070           else  
    1071                   remove(fnm);  
      1070         else if (remove(fnm)) {  
      1071         /* HACK: Possible concurrency issue... spin a little while */  
      1072         Sleep(100);  
      1073         remove(fnm);  
      1074     }  
    1072 1075 }  
    1073 1076 void clear(const char *dir)