From 4afdd5dca21c323675e193d73457fc2cb0f1cecc Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Wed, 7 Dec 2011 02:38:18 +0100 Subject: auth_core: Make sure we always save the RAND in the vector --- src/gsm/auth_core.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/gsm/auth_core.c b/src/gsm/auth_core.c index c2a13a58..d0c9f1ca 100644 --- a/src/gsm/auth_core.c +++ b/src/gsm/auth_core.c @@ -72,11 +72,18 @@ int osmo_auth_gen_vec(struct osmo_auth_vector *vec, const uint8_t *_rand) { struct osmo_auth_impl *impl = selected_auths[aud->algo]; + int rc; if (!impl) return -ENOENT; - return impl->gen_vec(vec, aud, _rand); + rc = impl->gen_vec(vec, aud, _rand); + if (rc < 0) + return rc; + + memcpy(vec->rand, _rand, sizeof(vec->rand)); + + return 0; } int osmo_auth_gen_vec_auts(struct osmo_auth_vector *vec, -- cgit v1.2.3