ecore_imf: remove NULL check prior to EINA_LIST_FREE

EINA_LIST_FREE checks whether its parameter is NULL or not
Thanks, Sebastian.


SVN revision: 69703
This commit is contained in:
Jihoon Kim 2012-03-28 11:03:11 +00:00
parent a49528f7ff
commit 11253ad06e
1 changed files with 1 additions and 4 deletions

View File

@ -493,10 +493,7 @@ ecore_imf_context_preedit_string_get(Ecore_IMF_Context *ctx, char **str, int *cu
* }
*
* // delete attribute list
* if (attrs)
* {
* EINA_LIST_FREE(attrs, attr) free(attr);
* }
* EINA_LIST_FREE(attrs, attr) free(attr);
*
* free(preedit_string);
* @endcode