Skip to content

Commit

Permalink
Send args and results as combined buffer in pipe RPC message
Browse files Browse the repository at this point in the history
  • Loading branch information
robmen committed Mar 4, 2024
1 parent 5e3753e commit 807e888
Show file tree
Hide file tree
Showing 7 changed files with 2,808 additions and 3,257 deletions.
641 changes: 289 additions & 352 deletions src/api/burn/balutil/BalBootstrapperEngine.cpp

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/api/burn/balutil/balinfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ DAPI_(HRESULT) BalSetOverridableVariablesFromEngine(
LPCWSTR wzVariableValue = pCommand->rgVariableValues[i];

hr = DictGetValue(pOverridableVariables->sdVariables, wzVariableName, reinterpret_cast<void**>(&pOverridableVariable));
if (E_NOTFOUND == hr)
if (E_NOTFOUND == hr || E_INVALIDARG == hr)
{
BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "Ignoring attempt to set non-overridable variable: '%ls'.", wzVariableName);
hr = S_OK;
Expand Down
Loading

0 comments on commit 807e888

Please sign in to comment.