[openssl-commits] [openssl] master update

Rich Salz rsalz at openssl.org
Thu Jun 16 18:23:09 UTC 2016


The branch master has been updated
       via  7f96f15bcfabaa4597fcc9529b7a0716f15e55ff (commit)
      from  ebad0b0beb1bb6913524549514111cbb91e6d494 (commit)


- Log -----------------------------------------------------------------
commit 7f96f15bcfabaa4597fcc9529b7a0716f15e55ff
Author: Rich Salz <rsalz at openssl.org>
Date:   Thu Jun 16 12:58:57 2016 -0400

    Fix build break.
    
    Aggregate local initializers are rarely portable (:
    
    Reviewed-by: Richard Levitte <levitte at openssl.org>

-----------------------------------------------------------------------

Summary of changes:
 crypto/asn1/asn_mime.c | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/crypto/asn1/asn_mime.c b/crypto/asn1/asn_mime.c
index 98f363e..a6b3893 100644
--- a/crypto/asn1/asn_mime.c
+++ b/crypto/asn1/asn_mime.c
@@ -876,9 +876,13 @@ static int mime_param_cmp(const MIME_PARAM *const *a,
 
 static MIME_HEADER *mime_hdr_find(STACK_OF(MIME_HEADER) *hdrs, const char *name)
 {
-    MIME_HEADER htmp = { (char *)name, NULL }; /* ugly cast but harmless */
+    MIME_HEADER htmp;
     int idx;
 
+    htmp.name = (char *)name;
+    htmp.value = NULL;
+    htmp.params = NULL;
+
     idx = sk_MIME_HEADER_find(hdrs, &htmp);
     if (idx < 0)
         return NULL;
@@ -887,9 +891,11 @@ static MIME_HEADER *mime_hdr_find(STACK_OF(MIME_HEADER) *hdrs, const char *name)
 
 static MIME_PARAM *mime_param_find(MIME_HEADER *hdr, const char *name)
 {
-    MIME_PARAM param = { (char *)name, NULL }; /* ugly cast but harmless */
+    MIME_PARAM param;
     int idx;
 
+    param.param_name = (char *)name;
+    param.param_value = NULL;
     idx = sk_MIME_PARAM_find(hdr->params, &param);
     if (idx < 0)
         return NULL;


More information about the openssl-commits mailing list