Commit d54900b8 authored by Aric Stewart's avatar Aric Stewart Committed by Alexandre Julliard

msi: Register fonts with full target paths as applications can and will install…

msi: Register fonts with full target paths as applications can and will install fonts to places other than the windows/fonts directory.
parent 7dd647b6
......@@ -216,8 +216,8 @@ static UINT ITERATE_RegisterFonts(MSIRECORD *row, LPVOID param)
if (name)
{
msi_reg_set_val_str( hkey1, name, file->FileName );
msi_reg_set_val_str( hkey2, name, file->FileName );
msi_reg_set_val_str( hkey1, name, file->TargetPath);
msi_reg_set_val_str( hkey2, name, file->TargetPath);
}
msi_free(name);
......
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