diff options
Diffstat (limited to 'src/lib/libcrypto/asn1/tasn_fre.c')
-rw-r--r-- | src/lib/libcrypto/asn1/tasn_fre.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libcrypto/asn1/tasn_fre.c b/src/lib/libcrypto/asn1/tasn_fre.c index d7c017fa1d..77d3092d31 100644 --- a/src/lib/libcrypto/asn1/tasn_fre.c +++ b/src/lib/libcrypto/asn1/tasn_fre.c | |||
@@ -110,7 +110,7 @@ static void asn1_item_combine_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int c | |||
110 | case ASN1_ITYPE_CHOICE: | 110 | case ASN1_ITYPE_CHOICE: |
111 | if (asn1_cb) | 111 | if (asn1_cb) |
112 | { | 112 | { |
113 | i = asn1_cb(ASN1_OP_FREE_PRE, pval, it); | 113 | i = asn1_cb(ASN1_OP_FREE_PRE, pval, it, NULL); |
114 | if (i == 2) | 114 | if (i == 2) |
115 | return; | 115 | return; |
116 | } | 116 | } |
@@ -123,7 +123,7 @@ static void asn1_item_combine_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int c | |||
123 | ASN1_template_free(pchval, tt); | 123 | ASN1_template_free(pchval, tt); |
124 | } | 124 | } |
125 | if (asn1_cb) | 125 | if (asn1_cb) |
126 | asn1_cb(ASN1_OP_FREE_POST, pval, it); | 126 | asn1_cb(ASN1_OP_FREE_POST, pval, it, NULL); |
127 | if (!combine) | 127 | if (!combine) |
128 | { | 128 | { |
129 | OPENSSL_free(*pval); | 129 | OPENSSL_free(*pval); |
@@ -149,7 +149,7 @@ static void asn1_item_combine_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int c | |||
149 | return; | 149 | return; |
150 | if (asn1_cb) | 150 | if (asn1_cb) |
151 | { | 151 | { |
152 | i = asn1_cb(ASN1_OP_FREE_PRE, pval, it); | 152 | i = asn1_cb(ASN1_OP_FREE_PRE, pval, it, NULL); |
153 | if (i == 2) | 153 | if (i == 2) |
154 | return; | 154 | return; |
155 | } | 155 | } |
@@ -170,7 +170,7 @@ static void asn1_item_combine_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int c | |||
170 | ASN1_template_free(pseqval, seqtt); | 170 | ASN1_template_free(pseqval, seqtt); |
171 | } | 171 | } |
172 | if (asn1_cb) | 172 | if (asn1_cb) |
173 | asn1_cb(ASN1_OP_FREE_POST, pval, it); | 173 | asn1_cb(ASN1_OP_FREE_POST, pval, it, NULL); |
174 | if (!combine) | 174 | if (!combine) |
175 | { | 175 | { |
176 | OPENSSL_free(*pval); | 176 | OPENSSL_free(*pval); |