Fix a small bug introduced when converting appids to a list.

oldstable
Mike McCormack 2005-08-25 09:50:19 +00:00 committed by Alexandre Julliard
parent 43ec0a4d06
commit 876982df8f
1 changed files with 1 additions and 1 deletions

View File

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