diff options
author | Renato Botelho <renato@netgate.com> | 2016-04-25 09:24:04 -0300 |
---|---|---|
committer | Renato Botelho <renato@netgate.com> | 2016-04-25 09:24:04 -0300 |
commit | d3c47eaa9d2ca52cf936c0801b144ff5a228ad56 (patch) | |
tree | 264c7f84714038dc366de9298876def5ec56bbc3 /lib/libgssapi/gss_pseudo_random.c | |
parent | ea9ba1a51b165fe4540662a900bb800f501bdf74 (diff) | |
parent | dce9e3914e6275f657335fa04e3ccf117d07edda (diff) | |
download | FreeBSD-src-d3c47eaa9d2ca52cf936c0801b144ff5a228ad56.zip FreeBSD-src-d3c47eaa9d2ca52cf936c0801b144ff5a228ad56.tar.gz |
Merge remote-tracking branch 'origin/stable/10' into devel
Diffstat (limited to 'lib/libgssapi/gss_pseudo_random.c')
-rw-r--r-- | lib/libgssapi/gss_pseudo_random.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libgssapi/gss_pseudo_random.c b/lib/libgssapi/gss_pseudo_random.c index c250d71..c746823 100644 --- a/lib/libgssapi/gss_pseudo_random.c +++ b/lib/libgssapi/gss_pseudo_random.c @@ -48,7 +48,7 @@ gss_pseudo_random(OM_uint32 *minor_status, gss_buffer_t prf_out) { struct _gss_context *ctx = (struct _gss_context *) context; - struct _gss_mech_switch *m = ctx->gc_mech; + struct _gss_mech_switch *m; OM_uint32 major_status; _gss_buffer_zero(prf_out); @@ -58,6 +58,7 @@ gss_pseudo_random(OM_uint32 *minor_status, *minor_status = 0; return GSS_S_NO_CONTEXT; } + m = ctx->gc_mech; if (m->gm_pseudo_random == NULL) return GSS_S_UNAVAILABLE; |