summaryrefslogtreecommitdiff
path: root/lib/libcrypto/asn1/asn1_par.c
diff options
context:
space:
mode:
authorJoel Sing <jsing@cvs.openbsd.org>2015-09-30 18:41:07 +0000
committerJoel Sing <jsing@cvs.openbsd.org>2015-09-30 18:41:07 +0000
commit7330b6bbb0b57ef15a12c85863f8c272dfdc71f7 (patch)
tree838240d30eb7af057a32aa52de07926b2fba3ca4 /lib/libcrypto/asn1/asn1_par.c
parent3dd17ea016bc6e27330106f6b38c292c7f8a5b2a (diff)
Replace M_ASN1_OCTET_STRING_(free|new) with ASN1_OCTET_STRING_(free|new).
Diffstat (limited to 'lib/libcrypto/asn1/asn1_par.c')
-rw-r--r--lib/libcrypto/asn1/asn1_par.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libcrypto/asn1/asn1_par.c b/lib/libcrypto/asn1/asn1_par.c
index 9057185e748..aaf8decd6cc 100644
--- a/lib/libcrypto/asn1/asn1_par.c
+++ b/lib/libcrypto/asn1/asn1_par.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: asn1_par.c,v 1.23 2015/09/30 17:30:15 jsing Exp $ */
+/* $OpenBSD: asn1_par.c,v 1.24 2015/09/30 18:41:06 jsing Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -286,7 +286,7 @@ asn1_parse2(BIO *bp, const unsigned char **pp, long length, int offset,
nl = 1;
}
}
- M_ASN1_OCTET_STRING_free(os);
+ ASN1_OCTET_STRING_free(os);
os = NULL;
} else if (tag == V_ASN1_INTEGER) {
ASN1_INTEGER *bs;
@@ -369,7 +369,7 @@ asn1_parse2(BIO *bp, const unsigned char **pp, long length, int offset,
end:
if (o != NULL)
ASN1_OBJECT_free(o);
- M_ASN1_OCTET_STRING_free(os);
+ ASN1_OCTET_STRING_free(os);
*pp = p;
return (ret);
}