Show
Ignore:
Timestamp:
2002-12-10 12:56:47 (6 years ago)
Author:
Thomas Roessler <roessler@…>
Branch:
HEAD
Message:

Replace safe_free calls by the FREE macro.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • charset.c

    r3043 r3173  
    441441    *ob = '\0'; 
    442442 
    443     safe_free ((void **) ps); 
     443    FREE (ps); 
    444444    *ps = buf; 
    445445     
     
    580580  if (fc->cd != (iconv_t)-1) 
    581581    iconv_close (fc->cd); 
    582   safe_free ((void **) _fc); 
    583 } 
     582  FREE (_fc); 
     583}