summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2010-12-02 00:40:01 +0100
committerKarolin Seeger <kseeger@samba.org>2011-09-28 20:11:44 +0200
commit363b81899401f01de11ddbd8036b55a472806b38 (patch)
tree0fd237a8263a195ce26c5bf5d6935e9ab0881e00
parent62b9ad45e27bb6a2af22aa9ee133ed6075abc62b (diff)
downloadsamba-363b81899401f01de11ddbd8036b55a472806b38.tar.gz
samba-363b81899401f01de11ddbd8036b55a472806b38.tar.xz
samba-363b81899401f01de11ddbd8036b55a472806b38.zip
libcli/auth: let spnego_write_mech_types() check the asn1_load() return
metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Tue Dec 7 18:23:41 CET 2010 on sn-devel-104
-rw-r--r--libcli/auth/spnego_parse.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libcli/auth/spnego_parse.c b/libcli/auth/spnego_parse.c
index 86b083d805c..27ede1bde47 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;