summaryrefslogtreecommitdiff
path: root/regress/lib/libcrypto/wycheproof/wycheproof.go
diff options
context:
space:
mode:
Diffstat (limited to 'regress/lib/libcrypto/wycheproof/wycheproof.go')
-rw-r--r--regress/lib/libcrypto/wycheproof/wycheproof.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/regress/lib/libcrypto/wycheproof/wycheproof.go b/regress/lib/libcrypto/wycheproof/wycheproof.go
index 1887a1b73c4..7ec02a8f32d 100644
--- a/regress/lib/libcrypto/wycheproof/wycheproof.go
+++ b/regress/lib/libcrypto/wycheproof/wycheproof.go
@@ -1,4 +1,4 @@
-/* $OpenBSD: wycheproof.go,v 1.78 2018/10/06 11:05:00 tb Exp $ */
+/* $OpenBSD: wycheproof.go,v 1.79 2018/10/06 14:23:08 tb Exp $ */
/*
* Copyright (c) 2018 Joel Sing <jsing@openbsd.org>
* Copyright (c) 2018 Theo Buehler <tb@openbsd.org>
@@ -1207,6 +1207,7 @@ func runDSATestGroup(algorithm string, wtg *wycheproofTestGroupDSA) bool {
if bio == nil {
log.Fatal("BIO_new_mem_buf failed")
}
+ defer C.free(unsafe.Pointer(keyPEM))
defer C.BIO_free(bio)
dsaPEM := C.PEM_read_bio_DSA_PUBKEY(bio, nil, nil, nil)