fix incorrect double free

This commit is contained in:
Vincent Sanders 2012-10-02 17:26:28 +01:00
parent def25fdc0c
commit 541b87ec9b
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ out:
if (charset != NULL)
free(charset);
if (target != NULL)
free(charset);
free(target);
return ret;
}