From: Adam Dickmeiss Date: Mon, 31 Mar 2014 17:35:05 +0000 (+0200) Subject: log: fix crash idPass user is omitted MP-530 X-Git-Tag: v1.4.8~3 X-Git-Url: http://sru.miketaylor.org.uk/?a=commitdiff_plain;h=b54a57c7af29c89371aa65dc766adac9ed61f58c;p=metaproxy-moved-to-github.git log: fix crash idPass user is omitted MP-530 --- diff --git a/src/filter_log.cpp b/src/filter_log.cpp index 147f2e9..b46815c 100644 --- a/src/filter_log.cpp +++ b/src/filter_log.cpp @@ -614,7 +614,8 @@ void yf::Log::Impl::process(mp::Package &package) Z_IdAuthentication *a = req->idAuthentication; if (a) { - if (a->which == Z_IdAuthentication_idPass) + if (a->which == Z_IdAuthentication_idPass + && a->u.idPass->userId) user = a->u.idPass->userId; else if (a->which == Z_IdAuthentication_open) user = a->u.open;