From 15c33ada6b897ac46141aaae0f0333816b94448b Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 2 Dec 2010 00:40:01 +0100 Subject: libcli/auth: let spnego_write_mech_types() check the asn1_load() return metze Autobuild-User: Stefan Metzmacher Autobuild-Date: Tue Dec 7 18:23:41 CET 2010 on sn-devel-104 --- libcli/auth/spnego_parse.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'libcli/auth/spnego_parse.c') diff --git a/libcli/auth/spnego_parse.c b/libcli/auth/spnego_parse.c index 86b083d805..27ede1bde4 100644 --- a/libcli/auth/spnego_parse.c +++ b/libcli/auth/spnego_parse.c @@ -380,6 +380,10 @@ bool spnego_write_mech_types(TALLOC_CTX *mem_ctx, { struct asn1_data *asn1 = asn1_init(mem_ctx); + if (asn1 == NULL) { + return false; + } + /* Write mechTypes */ if (mech_types && *mech_types) { int i; -- cgit