Commit 4402daa0 authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

rpcrt4: Don't print fixmes for NDR types without a freeing function.

Not all types have a freeing function.
parent 97b842c8
...@@ -2568,7 +2568,6 @@ static unsigned char * ComplexFree(PMIDL_STUB_MESSAGE pStubMsg, ...@@ -2568,7 +2568,6 @@ static unsigned char * ComplexFree(PMIDL_STUB_MESSAGE pStubMsg,
else else
m(pStubMsg, pMemory, desc); m(pStubMsg, pMemory, desc);
} }
else FIXME("no freer for embedded type %02x\n", *desc);
pMemory += size; pMemory += size;
pFormat += 2; pFormat += 2;
continue; continue;
...@@ -5245,7 +5244,6 @@ static void union_arm_free(PMIDL_STUB_MESSAGE pStubMsg, ...@@ -5245,7 +5244,6 @@ static void union_arm_free(PMIDL_STUB_MESSAGE pStubMsg,
m(pStubMsg, pMemory, desc); m(pStubMsg, pMemory, desc);
} }
} }
else FIXME("no freer for embedded type %02x\n", *desc);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment