quic: fixup errant LocalVector usage

PR-URL: https://github.com/nodejs/node/pull/56564
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
pull/56574/head
James M Snell 2025-01-11 13:17:54 -08:00
parent 732744cc76
commit 7b60bcb2f0
1 changed files with 1 additions and 1 deletions

View File

@ -2728,7 +2728,7 @@ void Session::EmitVersionNegotiation(const ngtcp2_pkt_hd& hd,
LocalVector<Value> versions(env()->isolate(), nsv);
for (size_t n = 0; n < nsv; n++) {
versions.push_back(Integer::NewFromUnsigned(env()->isolate(), sv[n]));
versions[n] = Integer::NewFromUnsigned(env()->isolate(), sv[n]);
}
// supported are the versions we acutually support expressed as a range.