diff --git a/ChangeLog b/ChangeLog index a7793b5644..ccdc804034 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Nov 29 22:39:35 2012 Naohisa Goto + + * ext/openssl/ossl_ssl.c (ssl_npn_encode_protocol_i): fix byte order + issue on big-endian architecture [ruby-core:50292] [Bug #7463] + Thu Nov 29 22:23:31 2012 Hiroshi Nakamura * test/openssl/test_cipher.rb (test_ctr_if_exists): add CTR mode test diff --git a/ext/openssl/ossl_ssl.c b/ext/openssl/ossl_ssl.c index 34df7d3d01..d5c07d79a9 100644 --- a/ext/openssl/ossl_ssl.c +++ b/ext/openssl/ossl_ssl.c @@ -569,10 +569,12 @@ static VALUE ssl_npn_encode_protocol_i(VALUE cur, VALUE encoded) { int len = RSTRING_LENINT(cur); + char len_byte; if (len < 1 || len > 255) ossl_raise(eSSLError, "Advertised protocol must have length 1..255"); /* Encode the length byte */ - rb_str_buf_cat(encoded, (const char *) &len, 1); + len_byte = len; + rb_str_buf_cat(encoded, &len_byte, 1); rb_str_buf_cat(encoded, RSTRING_PTR(cur), len); return Qnil; }