mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[WINESYNC] msi: Don't error when an ODBC Data Source fails to register.
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> wine commit id e4f1f9b7bdd46bf1f18c1e337ac6864bee3b0733 by Alistair Leslie-Hughes <leslie_alistair@hotmail.com>
This commit is contained in:
parent
06129f8479
commit
16273720a9
1 changed files with 1 additions and 4 deletions
|
@ -6797,10 +6797,7 @@ static UINT ITERATE_InstallODBCDataSource( MSIRECORD *rec, LPVOID param )
|
|||
attrs[len + 1] = 0;
|
||||
|
||||
if (!SQLConfigDataSourceW(NULL, request, driver, attrs))
|
||||
{
|
||||
ERR("Failed to install SQL data source!\n");
|
||||
r = ERROR_FUNCTION_FAILED;
|
||||
}
|
||||
WARN("Failed to install SQL data source!\n");
|
||||
|
||||
uirow = MSI_CreateRecord( 5 );
|
||||
MSI_RecordSetStringW( uirow, 1, desc );
|
||||
|
|
Loading…
Reference in a new issue