IDispatchInvoke: pass IDispatch arguments as VT_DISPATCH#304
Open
TetzkatLipHoka wants to merge 1 commit into
Open
IDispatchInvoke: pass IDispatch arguments as VT_DISPATCH#304TetzkatLipHoka wants to merge 1 commit into
TetzkatLipHoka wants to merge 1 commit into
Conversation
Variant parameters holding an IDispatch reference were marshaled like every other variant: wrapped as VT_VARIANT or VT_BYREF pointing at a copy of the variant. Lenient automation servers (e.g. the Scripting.* classes) accept that form, but strict marshalers - most prominently .NET COM interop - reject it, and assigning an object to an IDispatch property only works with a plain dispatch argument. Such arguments are now passed as VT_DISPATCH with the interface pointer itself (deliberately WITHOUT VT_BYREF, which is known to crash several COM servers). The variant in Par keeps the reference alive for the duration of the Invoke call, so no AddRef is needed. Also replaces the repeated rgvarg[i] indexing with a PVariantArg local (FPC needs rgvarg^[i]) and the cleanup check with a VT_BYREF mask test so VT_DISPATCH entries are skipped correctly. Originally found and fixed in the TetzkatLipHoka fork during .NET interop testing. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Variant parameters holding an IDispatch reference were marshaled like
every other variant: wrapped as VT_VARIANT or VT_BYREF pointing at a
copy of the variant. Lenient automation servers (e.g. the Scripting.*
classes) accept that form, but strict marshalers - most prominently
.NET COM interop - reject it, and assigning an object to an IDispatch
property only works with a plain dispatch argument.
Such arguments are now passed as VT_DISPATCH with the interface pointer
itself (deliberately WITHOUT VT_BYREF, which is known to crash several
COM servers). The variant in Par keeps the reference alive for the
duration of the Invoke call, so no AddRef is needed.
Also replaces the repeated rgvarg[i] indexing with a PVariantArg local
(FPC needs rgvarg^[i]) and the cleanup check with a VT_BYREF mask test
so VT_DISPATCH entries are skipped correctly.
Originally found and fixed in the TetzkatLipHoka fork during .NET
interop testing.
🤖 Generated with Claude Code