aboutsummaryrefslogtreecommitdiffstats
path: root/include/openssl/core.h
diff options
context:
space:
mode:
authorPauli <paul.dale@oracle.com>2019-06-24 14:43:55 +1000
committerPauli <paul.dale@oracle.com>2019-06-24 14:43:55 +1000
commit4e7991b497b65145ec5d570485020e1658208866 (patch)
tree34e384b7aa820b0b7ccefddee9a0fbd86c8850fb /include/openssl/core.h
parent0ccff7a7ea82a921f780a483fc91c6b90a1378d9 (diff)
downloadopenssl-4e7991b497b65145ec5d570485020e1658208866.tar.gz
Change OSSL_PARAM return size to not be a pointer.
Instead of referencing the return size from the OSSL_PARAM structure, make the size a field within the structure. Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/9135)
Diffstat (limited to 'include/openssl/core.h')
-rw-r--r--include/openssl/core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/openssl/core.h b/include/openssl/core.h
index f59695703e..848b71431a 100644
--- a/include/openssl/core.h
+++ b/include/openssl/core.h
@@ -77,7 +77,7 @@ struct ossl_param_st {
unsigned int data_type; /* declare what kind of content is in buffer */
void *data; /* value being passed in or out */
size_t data_size; /* data size */
- size_t *return_size; /* OPTIONAL: address to content size */
+ size_t return_size; /* returned content size */
};
/* Currently supported OSSL_PARAM data types */