aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--coreutils/expr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/expr.c b/coreutils/expr.c
index fdb4e3997..77d603b88 100644
--- a/coreutils/expr.c
+++ b/coreutils/expr.c
@@ -117,7 +117,7 @@ static VALUE *str_value (char *s)
117 117
118 v = xmalloc (sizeof(VALUE)); 118 v = xmalloc (sizeof(VALUE));
119 v->type = string; 119 v->type = string;
120 v->u.s = strdup (s); 120 v->u.s = bb_xstrdup (s);
121 return v; 121 return v;
122} 122}
123 123