Fix a small bug introduced when converting appids to a list.
This commit is contained in:
parent
43ec0a4d06
commit
876982df8f
dlls/msi
|
@ -107,7 +107,7 @@ static MSIAPPID *load_given_appid( MSIPACKAGE *package, LPCWSTR name )
|
|||
}
|
||||
}
|
||||
|
||||
row = MSI_QueryGetRecord(package->db, ExecSeqQuery, appid);
|
||||
row = MSI_QueryGetRecord(package->db, ExecSeqQuery, name);
|
||||
if (!row)
|
||||
return NULL;
|
||||
|
||||
|
|
Loading…
Reference in New Issue