17 Jan
2011
17 Jan
'11
10:59 a.m.
Module: wine Branch: master Commit: c63cf7014bcc22366834e916302385b257ca61cf URL: http://source.winehq.org/git/wine.git/?a=commit;h=c63cf7014bcc22366834e91630... Author: Thomas Mullaly <thomas.mullaly(a)gmail.com> Date: Sat Jan 15 15:16:50 2011 -0500 urlmon/tests: Fixed memory leak in tests (valgrind). --- dlls/urlmon/tests/uri.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/dlls/urlmon/tests/uri.c b/dlls/urlmon/tests/uri.c index 44f438f..5bbd051 100644 --- a/dlls/urlmon/tests/uri.c +++ b/dlls/urlmon/tests/uri.c @@ -7248,6 +7248,7 @@ static void test_CreateUriWithFragment(void) { if(uri) IUri_Release(uri); heap_free(uriW); + heap_free(fragW); } }