summaryrefslogtreecommitdiffstats
path: root/subopt-helper.c
diff options
context:
space:
mode:
Diffstat (limited to 'subopt-helper.c')
-rw-r--r--subopt-helper.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/subopt-helper.c b/subopt-helper.c
index 37c634b5ff..5a2f19ea40 100644
--- a/subopt-helper.c
+++ b/subopt-helper.c
@@ -226,8 +226,7 @@ int subopt_parse( char const * const str, const opt_t * opts )
tmp.str = NULL;
tmp.len = 0;
last = parse_str( &str[parse_pos], &tmp );
- if (*valp)
- free(*valp);
+ free(*valp);
*valp = NULL;
if (tmp.str && tmp.len > 0) {
*valp = malloc(tmp.len + 1);