summaryrefslogtreecommitdiffstats
path: root/source/heimdal/lib/asn1/der_free.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2007-01-10 01:57:32 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:37:20 -0500
commit351f7040f7bb73b9a60b22b564686f7c2f98a729 (patch)
tree4d697b86763a72ff6b3b01d282a5623696c2180a /source/heimdal/lib/asn1/der_free.c
parent75fddbbc0811010a28ca5bb597b573b3f10ef6d6 (diff)
downloadsamba-351f7040f7bb73b9a60b22b564686f7c2f98a729.tar.gz
samba-351f7040f7bb73b9a60b22b564686f7c2f98a729.tar.xz
samba-351f7040f7bb73b9a60b22b564686f7c2f98a729.zip
r20640: Commit part 2/2
Update Heimdal to match current lorikeet-heimdal. This includes integrated PAC hooks, so Samba doesn't have to handle this any more. This also brings in the PKINIT code, hence so many new files. Andrew Bartlett
Diffstat (limited to 'source/heimdal/lib/asn1/der_free.c')
-rw-r--r--source/heimdal/lib/asn1/der_free.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/source/heimdal/lib/asn1/der_free.c b/source/heimdal/lib/asn1/der_free.c
index c3a6a17fff7..6827486d9f7 100644
--- a/source/heimdal/lib/asn1/der_free.c
+++ b/source/heimdal/lib/asn1/der_free.c
@@ -33,7 +33,7 @@
#include "der_locl.h"
-RCSID("$Id: der_free.c,v 1.13 2006/10/14 05:30:47 lha Exp $");
+RCSID("$Id: der_free.c,v 1.14 2006/12/28 17:14:21 lha Exp $");
void
der_free_general_string (heim_general_string *str)
@@ -80,6 +80,13 @@ der_free_universal_string (heim_universal_string *k)
}
void
+der_free_visible_string (heim_visible_string *str)
+{
+ free(*str);
+ *str = NULL;
+}
+
+void
der_free_octet_string (heim_octet_string *k)
{
free(k->data);