From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 8EBC71399E6 for ; Fri, 4 Sep 2015 08:34:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A05CC95858; Fri, 4 Sep 2015 08:33:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B830795858 for ; Fri, 4 Sep 2015 08:33:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E9E2B340955 for ; Fri, 4 Sep 2015 08:33:29 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E6CBE162 for ; Fri, 4 Sep 2015 08:33:25 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1360925888.619348cf84ad9c2e326bc097a2abff673b7c9e86.ulm@gentoo> Subject: [gentoo-commits] dev/ulm:pam_skey-1.1.5-patches-5 commit in: patchsets/pam_skey/1.1.5/ X-VCS-Repository: dev/ulm X-VCS-Files: patchsets/pam_skey/1.1.5/03_all_null_response.patch X-VCS-Directories: patchsets/pam_skey/1.1.5/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 619348cf84ad9c2e326bc097a2abff673b7c9e86 X-VCS-Branch: pam_skey-1.1.5-patches-5 Date: Fri, 4 Sep 2015 08:33:25 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: e72d288a-8f88-43f1-a5e9-088026de09b2 X-Archives-Hash: 6c08d8e6f5d10be5a27dafacedf59af3 Message-ID: <20150904083325.sByjvNrOnL9vJBSrUZvU0ocQYvzJ3l_1GOJbJ6FwHcY@z> commit: 619348cf84ad9c2e326bc097a2abff673b7c9e86 Author: Ulrich Müller gentoo org> AuthorDate: Sat Mar 10 10:14:45 2012 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Fri Feb 15 10:58:08 2013 +0000 URL: https://gitweb.gentoo.org/dev/ulm.git/commit/?id=619348cf Check for NULL pointer in response from conversation function. patchsets/pam_skey/1.1.5/03_all_null_response.patch | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/patchsets/pam_skey/1.1.5/03_all_null_response.patch b/patchsets/pam_skey/1.1.5/03_all_null_response.patch new file mode 100644 index 0000000..3518993 --- /dev/null +++ b/patchsets/pam_skey/1.1.5/03_all_null_response.patch @@ -0,0 +1,14 @@ +https://bugs.gentoo.org/407591 +Check for NULL pointer in response from conversation function. + +--- pam_skey-1.1.5/pam_skey.c ++++ pam_skey/pam_skey.c +@@ -266,5 +266,8 @@ + else + return PAM_SERVICE_ERR; + ++ if (*response == NULL) ++ return PAM_SERVICE_ERR; ++ + return PAM_SUCCESS; + }