
In STAT.CAS near line 152:

********************** OLD CODE ***************************
  if ((full = _fullpath((char *)NULL,pathP,0)) != NULL)
     info.ds_drive = full[0] + 1
          - (full[0] >= 'a' && full[0] <= 'z' ? 'a' : 'A');
 
********************** NEW CODE ***************************
  if ((full = _fullpath((char *)NULL,pathP,0)) != NULL) {
     info.ds_drive = full[0] + 1
          - (full[0] >= 'a' && full[0] <= 'z' ? 'a' : 'A');
     free(full);
   }
 
