Signed-off-by: Christian Couder <chriscool@xxxxxxxxxxxxx> --- diff.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) By the way perhaps the return error("%s: lacks value", var); should also be changed to return config_error_nonbool(var); or the check could be removed because there is already a check line 171 just before 'parse_lldiff_command' is called. diff --git a/diff.c b/diff.c index cd8bc4d..e5db293 100644 --- a/diff.c +++ b/diff.c @@ -88,7 +88,7 @@ static int parse_lldiff_command(const char *var, const char *ep, const char *val if (!value) return error("%s: lacks value", var); - drv->cmd = strdup(value); + drv->cmd = xstrdup(value); return 0; } -- 1.5.4.20.gc135a-dirty - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html