Skip to content

Commit 65fc1f4

Browse files
committed
Add a pointer to interface pointer values.
1 parent 26fc2a7 commit 65fc1f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

NtApiDotNet/Win32/Rpc/RpcClientBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@ private RpcTypeDescriptor GetTypeDescriptorInternal(NdrBaseTypeReference type, M
500500
else if (type is NdrInterfacePointerTypeReference)
501501
{
502502
ret_desc = new RpcTypeDescriptor(typeof(NdrInterfacePointer), nameof(NdrUnmarshalBuffer.ReadInterfacePointer),
503-
nameof(NdrMarshalBuffer.WriteInterfacePointer), type);
503+
nameof(NdrMarshalBuffer.WriteInterfacePointer), type, RpcPointerType.Unique);
504504
}
505505
else if (type is NdrPipeTypeReference pipe_type)
506506
{

0 commit comments

Comments
 (0)