Skip to content

Commit

Permalink
fix #1405: значение для пропущенного параметра
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr-Rm committed May 21, 2024
1 parent 17c6a61 commit b1b5f44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ScriptEngine/Machine/Contexts/COMWrapperContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public static object MarshalIValue(IValue val)
}
else
{
retValue = ContextValuesMarshaller.ConvertToCLRObject(val);
retValue = ContextValuesMarshaller.ConvertToCLRObject(val) ?? Missing.Value;
}

return retValue;
Expand Down

0 comments on commit b1b5f44

Please sign in to comment.