components/gnutls-3/patches/03_pkcs11_common.patch
author jenny.yung@oracle.com <jenny.yung@oracle.com>
Wed, 02 Dec 2015 16:35:50 -0800
changeset 5143 9b4a483bf8d9
permissions -rw-r--r--
22242767 Upgrade GnuTLS to 3.4.6 22080473 problem in LIBRARY/GNUTLS

Source: Internal

Info: This patch fixes the issue of pkcs11_common(NULL) being called
when PKCS11 is not enabled.

Status: This patch has been submitted to upstream, not yet accepted.

--- gnutls-3.4.6/src/tpmtool.c	Tue Jul 21 02:42:08 2015
+++ gnutls-3.4.6/src/tpmtool.c	Thu Nov 19 13:43:02 2015
@@ -184,7 +184,9 @@
 	gnutls_datum_t data, sig = {NULL, 0};
 	int pk;
 
+#ifdef ENABLE_PKCS11
 	pkcs11_common(NULL);
+#endif
 
 	data.data = (void*)TEST_DATA;
 	data.size = sizeof(TEST_DATA)-1;