Skip to content

Commit ac6f594

Browse files
committed
quic: address new coverity warning
- address coverity warning about unitialized variable Signed-off-by: Michael Dawson <[email protected]> PR-URL: #48384 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Marco Ippolito <[email protected]> Reviewed-By: Debadree Chatterjee <[email protected]>
1 parent 8d651ce commit ac6f594

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/quic/session.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ Maybe<Session::Options> Session::Options::From(Environment* env,
363363

364364
auto& state = BindingData::Get(env);
365365
auto params = value.As<Object>();
366-
Options options;
366+
Options options = Options();
367367

368368
#define SET(name) \
369369
SetOption<Session::Options, &Session::Options::name>( \

0 commit comments

Comments
 (0)