mshtml: Free wine_get_dos_file_name memory with HeapFree.

This commit is contained in:
Rémi Bernon 2022-11-25 16:11:48 +01:00 committed by Alexandre Julliard
parent 489218444f
commit a49838f24e

View file

@ -763,7 +763,7 @@ static WCHAR *find_wine_gecko_unix(const char *unix_path)
ret = check_version(dos_dir);
free(dos_dir);
HeapFree(GetProcessHeap(), 0, dos_dir);
return ret;
}