mirror of
https://github.com/mdbtools/mdbtools.git
synced 2025-04-05 20:31:00 +08:00
Merge branch 'dev' of github.com:mdbtools/mdbtools into dev
This commit is contained in:
commit
c04a3fb9a7
@ -294,7 +294,7 @@ mdb_get_colbacktype_string(const MdbColumn *col)
|
|||||||
const MdbBackendType *type = mdb_get_colbacktype(col);
|
const MdbBackendType *type = mdb_get_colbacktype(col);
|
||||||
if (!type) {
|
if (!type) {
|
||||||
// return NULL;
|
// return NULL;
|
||||||
static __thread char buf[16];
|
static TLS char buf[16];
|
||||||
snprintf(buf, sizeof(buf), "Unknown_%04x", col->col_type);
|
snprintf(buf, sizeof(buf), "Unknown_%04x", col->col_type);
|
||||||
return buf;
|
return buf;
|
||||||
}
|
}
|
||||||
|
@ -24,8 +24,8 @@
|
|||||||
|
|
||||||
#define DEBUG 1
|
#define DEBUG 1
|
||||||
|
|
||||||
static __thread unsigned long opts;
|
static TLS unsigned long opts;
|
||||||
static __thread int optset;
|
static TLS int optset;
|
||||||
|
|
||||||
static void load_options(void);
|
static void load_options(void);
|
||||||
|
|
||||||
|
@ -93,7 +93,7 @@ void FreeConnectParams (ConnectParams* params)
|
|||||||
|
|
||||||
gchar* GetConnectParam (ConnectParams* params, const gchar* paramName)
|
gchar* GetConnectParam (ConnectParams* params, const gchar* paramName)
|
||||||
{
|
{
|
||||||
static __thread char tmp[FILENAME_MAX];
|
static TLS char tmp[FILENAME_MAX];
|
||||||
|
|
||||||
/* use old servername */
|
/* use old servername */
|
||||||
tmp[0] = '\0';
|
tmp[0] = '\0';
|
||||||
@ -317,4 +317,4 @@ ODBCINSTGetProperties(HODBCINSTPROPERTY hLastProperty)
|
|||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
/** @}*/
|
/** @}*/
|
||||||
|
Loading…
Reference in New Issue
Block a user