Changeset 959 for trunk/dll/copyf.c


Ignore:
Timestamp:
Feb 18, 2008, 1:47:31 AM (17 years ago)
Author:
Gregg Young
Message:

Use xfree where appropriate. Check that buffer exists following all xmallocs. Stopped at eas.c with xfree checking. One remaining xmalloc without test in dirsize.c

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/copyf.c

    r907 r959  
    783783  }
    784784
    785   free(f);
    786   free(ss);
     785  xfree(f);
     786  xfree(ss);
    787787  free(str);
    788788  return 0;
     
    856856  }
    857857
    858   free(f);
    859   free(ss);
     858  xfree(f);
     859  xfree(ss);
    860860  free(str);
    861861  return 0;
Note: See TracChangeset for help on using the changeset viewer.