From: Alex Henrie alexhenrie24@gmail.com
--- dlls/quartz/filtermapper.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/quartz/filtermapper.c b/dlls/quartz/filtermapper.c index 69755c3648e..df76826f5d8 100644 --- a/dlls/quartz/filtermapper.c +++ b/dlls/quartz/filtermapper.c @@ -726,7 +726,7 @@ static HRESULT FM2_ReadFilterData(BYTE *pData, REGFILTER2 * prf2)
/* FIXME: check signature */
- TRACE("\tsignature = %s\n", debugstr_an((const char*)prrfp->signature, 4)); + TRACE("\tsignature = %s\n", debugstr_fourcc(prrfp->signature));
TRACE("\tPin %lu: dwFlags %#lx, dwInstances %lu, dwMediaTypes %lu, dwMediums %lu.\n", i, prrfp->dwFlags, prrfp->dwInstances, prrfp->dwMediaTypes, prrfp->dwMediums); @@ -760,7 +760,7 @@ static HRESULT FM2_ReadFilterData(BYTE *pData, REGFILTER2 * prf2) CLSID * clsMinor = CoTaskMemAlloc(sizeof(CLSID));
/* FIXME: check signature */ - TRACE("\t\tsignature = %s\n", debugstr_an((const char*)prt->signature, 4)); + TRACE("\t\tsignature = %s\n", debugstr_fourcc(prt->signature));
memcpy(clsMajor, pData + prt->dwOffsetMajor, sizeof(CLSID)); memcpy(clsMinor, pData + prt->dwOffsetMinor, sizeof(CLSID));
Hi,
It looks like your patch introduced the new failures shown below. Please investigate and fix them before resubmitting your patch. If they are not new, fixing them anyway would help a lot. Otherwise please ask for the known failures list to be updated.
The tests also ran into some preexisting test failures. If you know how to fix them that would be helpful. See the TestBot job for the details:
The full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=138812
Your paranoid android.
=== debian11b (64 bit WoW report) ===
mfmediaengine: Unhandled exception: assertion failed in 64-bit code (0x006fffffc875f8).
This merge request was approved by Zebediah Figura.
It looks like this needs a rebase?