Skip to content
Snippets Groups Projects
Commit a47343b9 authored by Alexandre Julliard's avatar Alexandre Julliard
Browse files

msi: Return an error code instead of a button id in msi_change_media().

parent dc80a003
Branches
Tags
No related merge requests found
......@@ -97,7 +97,7 @@ static UINT msi_change_media(MSIPACKAGE *package, MSIMEDIAINFO *mi)
msiobj_release(&record->hdr);
msi_free(source_dir);
return r;
return r == IDRETRY ? ERROR_SUCCESS : ERROR_INSTALL_SOURCE_ABSENT;
}
static MSICABINETSTREAM *msi_get_cabinet_stream( MSIPACKAGE *package, UINT disk_id )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment