diff options
Diffstat (limited to 'trailer.c')
-rw-r--r-- | trailer.c | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -416,12 +416,9 @@ static int set_if_missing(struct conf_info *item, const char *value) static void duplicate_conf(struct conf_info *dst, const struct conf_info *src) { *dst = *src; - if (src->name) - dst->name = xstrdup(src->name); - if (src->key) - dst->key = xstrdup(src->key); - if (src->command) - dst->command = xstrdup(src->command); + dst->name = xstrdup_or_null(src->name); + dst->key = xstrdup_or_null(src->key); + dst->command = xstrdup_or_null(src->command); } static struct arg_item *get_conf_item(const char *name) |