Commit 75cc5f1e authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

msi: Non-compressed files may come before the list of compressed files in the file sequence.

parent 64db35a9
......@@ -460,9 +460,6 @@ static UINT ready_media_for_file( MSIPACKAGE *package, struct media_info *mi,
return ERROR_FUNCTION_FAILED;
}
seq = MSI_RecordGetInteger(row,2);
mi->last_sequence = seq;
volume = MSI_RecordGetString(row, 5);
prompt = MSI_RecordGetString(row, 3);
......@@ -486,6 +483,9 @@ static UINT ready_media_for_file( MSIPACKAGE *package, struct media_info *mi,
return rc;
}
seq = MSI_RecordGetInteger(row,2);
mi->last_sequence = seq;
cab = MSI_RecordGetString(row,4);
if (cab)
{
......
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