Skip to content

Commit

Permalink
ossl config: shareable when frozen
Browse files Browse the repository at this point in the history
should proobably be initialized as frozen, given no state modifications
  • Loading branch information
HoneyryderChuck committed Nov 6, 2024
1 parent bd647c3 commit 7beda12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/openssl/ossl_config.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ static const rb_data_type_t ossl_config_type = {
{
0, nconf_free,
},
0, 0, RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED,
0, 0, RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED | RUBY_TYPED_FROZEN_SHAREABLE,
};

CONF *
Expand Down

0 comments on commit 7beda12

Please sign in to comment.