From c44720e82e172053176597838d0e6c56ab9961c8 Mon Sep 17 00:00:00 2001 From: mjn3 Date: Sun, 1 Feb 2004 07:34:28 +0000 Subject: Use bb_xstrdup() instead of strdup(). git-svn-id: svn://busybox.net/trunk/busybox@8388 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- coreutils/expr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) v = xmalloc (sizeof(VALUE)); v->type = string; - v->u.s = strdup (s); + v->u.s = bb_xstrdup (s); return v; } -- cgit v1.2.3-55-g6feb