summaryrefslogtreecommitdiff
path: root/libidn/stringprep.c
diff options
context:
space:
mode:
Diffstat (limited to 'libidn/stringprep.c')
-rw-r--r--libidn/stringprep.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/libidn/stringprep.c b/libidn/stringprep.c
index 6041e3937a..f5c9fae073 100644
--- a/libidn/stringprep.c
+++ b/libidn/stringprep.c
@@ -366,8 +366,7 @@ stringprep (char *in,
do
{
- if (ucs4)
- free (ucs4);
+ free (ucs4);
ucs4 = stringprep_utf8_to_ucs4 (in, -1, &ucs4len);
maxucs4len = ucs4len + adducs4len;
uint32_t *newp = realloc (ucs4, maxucs4len * sizeof (uint32_t));
@@ -449,8 +448,7 @@ stringprep_profile (const char *in,
do
{
- if (str)
- free (str);
+ free (str);
str = (char *) malloc (len);
if (str == NULL)
return STRINGPREP_MALLOC_ERROR;