From ac08a5235ef40eb19d713e88aeb920ce90576b75 Mon Sep 17 00:00:00 2001 From: nectar Date: Thu, 19 Apr 2001 16:47:38 +0000 Subject: Fix an uninitialized pointer dereference in krb5_rd_cred. --- security/heimdal/Makefile | 1 + security/heimdal/files/patch-cq | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 security/heimdal/files/patch-cq (limited to 'security') diff --git a/security/heimdal/Makefile b/security/heimdal/Makefile index 36518258c415..b607de59cc80 100644 --- a/security/heimdal/Makefile +++ b/security/heimdal/Makefile @@ -7,6 +7,7 @@ PORTNAME= heimdal PORTVERSION= 0.3e +PORTREVISION= 1 CATEGORIES= security ipv6 MASTER_SITES= ftp://ftp.pdc.kth.se/pub/heimdal/src/ \ ftp://ftp.replay.com/pub/replay/crypto/APPS/kerberos/heimdal/ \ diff --git a/security/heimdal/files/patch-cq b/security/heimdal/files/patch-cq new file mode 100644 index 000000000000..c15e71806b7e --- /dev/null +++ b/security/heimdal/files/patch-cq @@ -0,0 +1,10 @@ +--- lib/krb5/rd_cred.c.orig Tue Apr 17 16:03:58 2001 ++++ lib/krb5/rd_cred.c Tue Apr 17 16:05:16 2001 +@@ -50,6 +50,7 @@ + krb5_crypto crypto; + int i; + ++ *ret_creds = NULL; + ret = decode_KRB_CRED(in_data->data, in_data->length, + &cred, &len); + if(ret) -- cgit