From 1abedcdad2eef3d262c115ac13f069900338727c Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 8 Oct 2009 13:46:47 -0700 Subject: Remove duplicate __set_errno call in random_r.c. --- stdlib/random_r.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'stdlib/random_r.c') diff --git a/stdlib/random_r.c b/stdlib/random_r.c index a30055f598..90a157f9c1 100644 --- a/stdlib/random_r.c +++ b/stdlib/random_r.c @@ -255,10 +255,8 @@ __initstate_r (seed, arg_state, n, buf) else if (n < BREAK_1) { if (n < BREAK_0) - { - __set_errno (EINVAL); - goto fail; - } + goto fail; + type = TYPE_0; } else -- cgit v1.2.3