msi: Register fonts with full target paths as applications can and will install fonts to places other than the windows/fonts directory.

This commit is contained in:
Aric Stewart 2007-04-11 16:10:32 +09:00 committed by Alexandre Julliard
parent 7dd647b633
commit d54900b8bc
1 changed files with 2 additions and 2 deletions

View File

@ -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);