diff options
author | pfg <pfg@FreeBSD.org> | 2016-04-20 00:49:37 +0000 |
---|---|---|
committer | pfg <pfg@FreeBSD.org> | 2016-04-20 00:49:37 +0000 |
commit | d17a279cbdc8f21d9229f8e80ccefab5e925143d (patch) | |
tree | 0b21dc0d06a73941b4c0772f4610bae9526e42d2 /lib/libgssapi/gss_wrap.c | |
parent | 89c6fc4bee45c341529e586ec35efae29be510a8 (diff) | |
download | FreeBSD-src-d17a279cbdc8f21d9229f8e80ccefab5e925143d.zip FreeBSD-src-d17a279cbdc8f21d9229f8e80ccefab5e925143d.tar.gz |
MFC 297942:
libgssapi: avoid NULL pointer dereferences.
While here also use NULL instead of zero for pointers.
Diffstat (limited to 'lib/libgssapi/gss_wrap.c')
-rw-r--r-- | lib/libgssapi/gss_wrap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libgssapi/gss_wrap.c b/lib/libgssapi/gss_wrap.c index 2f94316..1cf046a 100644 --- a/lib/libgssapi/gss_wrap.c +++ b/lib/libgssapi/gss_wrap.c @@ -42,7 +42,7 @@ gss_wrap(OM_uint32 *minor_status, gss_buffer_t output_message_buffer) { struct _gss_context *ctx = (struct _gss_context *) context_handle; - struct _gss_mech_switch *m = ctx->gc_mech; + struct _gss_mech_switch *m; if (conf_state) *conf_state = 0; @@ -51,6 +51,7 @@ gss_wrap(OM_uint32 *minor_status, *minor_status = 0; return (GSS_S_NO_CONTEXT); } + m = ctx->gc_mech; return (m->gm_wrap(minor_status, ctx->gc_ctx, conf_req_flag, qop_req, input_message_buffer, |