Module: wine Branch: master Commit: ac393df4b5729f3772fa79ff24a4e0bb44a3f46c URL: https://gitlab.winehq.org/wine/wine/-/commit/ac393df4b5729f3772fa79ff24a4e0b...
Author: Rémi Bernon rbernon@codeweavers.com Date: Thu May 11 21:28:19 2023 +0200
mf/tests: Release PROPVARIANT memory in check_attributes (Valgrind).
---
dlls/mf/tests/transform.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/dlls/mf/tests/transform.c b/dlls/mf/tests/transform.c index 34a00526eab..b7d8c088870 100644 --- a/dlls/mf/tests/transform.c +++ b/dlls/mf/tests/transform.c @@ -278,6 +278,7 @@ void check_attributes_(const char *file, int line, IMFAttributes *attributes, todo_wine_if(desc[i].todo_value) ok_(file, line)(ret == 0, "%s mismatch, type %u, value %s\n", debugstr_a(desc[i].name), value.vt, buffer); + PropVariantClear(&value); } }