summaryrefslogtreecommitdiff
path: root/config/config.c
diff options
context:
space:
mode:
authorMikhail Gusarov <dottedmag@dottedmag.net>2010-06-04 16:58:58 +0700
committerMikhail Gusarov <dottedmag@dottedmag.net>2010-06-11 19:04:23 +0700
commit6592db6bb526f0c43b4c7b55859c629709e039b4 (patch)
tree30d525b635170a94193c0a8837e1b36b609e757e /config/config.c
parent620ca54aaa0b363fcf68cec1bd6c37e68c988352 (diff)
Get rid of xstrdup when argument is definitely non-NULL
Replace xstrdup with strdup when either constant string is being duplicated or argument is guarded by conditionals and obviously can't be NULL Signed-off-by: Mikhail Gusarov <dottedmag@dottedmag.net> Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'config/config.c')
-rw-r--r--config/config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/config.c b/config/config.c
index 65ef67987..d42a16a1f 100644
--- a/config/config.c
+++ b/config/config.c
@@ -134,6 +134,6 @@ add_option(InputOption **options, const char *key, const char *value)
if (!*options) /* Yeesh. */
return;
(*options)->key = xstrdup(key);
- (*options)->value = xstrdup(value);
+ (*options)->value = strdup(value);
(*options)->next = NULL;
}