Author: iratqq Date: Mon Jan 5 17:33:44 2009 New Revision: 5694
Modified: trunk/uim/iconv.c Log: * uim/iconv.c (uim_iconv_code_conv): - Remove needless NULL check. Modified: trunk/uim/iconv.c ============================================================================== --- trunk/uim/iconv.c (original) +++ trunk/uim/iconv.c Mon Jan 5 17:33:44 2009 @@ -341,11 +341,9 @@ return str; err: - if (str) - free(str); - if (outbuf) - free(outbuf); + free(str); + free(outbuf); UIM_CATCH_ERROR_END();
