Skip to content

Commit

Permalink
fix build issue. copy is needed
Browse files Browse the repository at this point in the history
  • Loading branch information
ami-GS committed Nov 27, 2024
1 parent c00814b commit 6110049
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/test/bin/winkernel/control.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -692,14 +692,14 @@ QuicTestCtlEvtIoDeviceControl(
STRSAFE_NULL_ON_FAILURE);

#if defined(QUIC_API_ENABLE_PREVIEW_FEATURES)
QUIC_EXECUTION_CONFIG* Config = &Params->TestConfigurationParams.Config;
if (Config->Flags != QUIC_EXECUTION_CONFIG_FLAG_NONE) {
QUIC_EXECUTION_CONFIG Config = Params->TestConfigurationParams.Config;
if (Config.Flags != QUIC_EXECUTION_CONFIG_FLAG_NONE) {
Status =
MsQuic->SetParam(
nullptr,
QUIC_PARAM_GLOBAL_EXECUTION_CONFIG,
sizeof(Config),
Config);
&Config);
}
#endif

Expand Down

0 comments on commit 6110049

Please sign in to comment.