From: Bart A.M. Jourquin Date: Thu, 27 Jan 2000 13:10:54 +0000 (+0000) Subject: IODBC fix in GetDataSource X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/c56dadd8ed0562ccf7c644a2f88f3e51d6e4cb1e IODBC fix in GetDataSource git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5711 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/db.cpp b/src/common/db.cpp index 0a6ab1db6e..e0bcf041b1 100644 --- a/src/common/db.cpp +++ b/src/common/db.cpp @@ -2617,7 +2617,9 @@ bool GetDataSource(HENV henv, char *Dsn, SWORD DsnMax, char *DsDesc, SWORD DsDes if (SQLDataSources(henv, direction, (UCHAR FAR *) Dsn, DsnMax, &cb1, (UCHAR FAR *) DsDesc, DsDescMax, &cb2) == SQL_SUCCESS) { - DsDesc[cb2+1] = 0; // Set the terminating character for the string +#ifndef _IODBC_ + DsDesc[cb2+1] = 0; // Set the terminating character for the string +#endif return(TRUE); } else