Changeset 2239:d05fb70e42c2 for charset.c
Legend:
- Unmodified
- Added
- Removed
-
charset.c
r2185 r2239 515 515 } 516 516 517 void fgetconv_close (FGETCONV * _fc)518 { 519 struct fgetconv_s *fc = (struct fgetconv_s *) _fc;517 void fgetconv_close (FGETCONV **_fc) 518 { 519 struct fgetconv_s *fc = (struct fgetconv_s *) *_fc; 520 520 521 521 if (fc->cd != (iconv_t)-1) 522 522 iconv_close (fc->cd); 523 free (fc);524 } 523 safe_free (_fc); 524 }
