From 655708c347e689ef986e2fe3da4d1932d7684196 Mon Sep 17 00:00:00 2001 From: Luke Howard Date: Sun, 27 Mar 2011 02:17:39 +1100 Subject: [PATCH] fix missing return statement in importing attributes --- mech_eap/util_attr.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mech_eap/util_attr.cpp b/mech_eap/util_attr.cpp index 41a2736..2b4d7c4 100644 --- a/mech_eap/util_attr.cpp +++ b/mech_eap/util_attr.cpp @@ -333,6 +333,9 @@ gss_eap_attr_ctx::initFromBuffer(const gss_buffer_t buffer) didInit[type] = true; } + if (ret == false) + return ret; + /* * The call the initFromGssContext methods for attribute * providers that can initialize themselves from other -- 2.1.4