Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit bf0de92

Browse filesBrowse files
codebytereaduh95
authored andcommitted
tls: fix leak on invalid protocol method
PR-URL: #60427 Reviewed-By: Anna Henningsen <anna@addaleax.net>
1 parent 219d2e9 commit bf0de92
Copy full SHA for bf0de92

File tree

Expand file treeCollapse file tree

1 file changed

+2
-1
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-1
lines changed
Open diff view settings
Collapse file

‎src/crypto/crypto_context.cc‎

Copy file name to clipboardExpand all lines: src/crypto/crypto_context.cc
+2-1Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1351,7 +1351,6 @@ SecureContext* SecureContext::Create(Environment* env) {
13511351
SecureContext::SecureContext(Environment* env, Local<Object> wrap)
13521352
: BaseObject(env, wrap) {
13531353
MakeWeak();
1354-
env->external_memory_accounter()->Increase(env->isolate(), kExternalSize);
13551354
}
13561355

13571356
inline void SecureContext::Reset() {
@@ -1469,6 +1468,8 @@ void SecureContext::Init(const FunctionCallbackInfo<Value>& args) {
14691468
if (!sc->ctx_) {
14701469
return ThrowCryptoError(env, ERR_get_error(), "SSL_CTX_new");
14711470
}
1471+
1472+
env->external_memory_accounter()->Increase(env->isolate(), kExternalSize);
14721473
SSL_CTX_set_app_data(sc->ctx_.get(), sc);
14731474

14741475
// Disable SSLv2 in the case when method == TLS_method() and the

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.