mirror of
https://github.com/mdbtools/mdbtools.git
synced 2025-04-05 20:31:00 +08:00
Merge branch 'master' into backend-thread-safety
This commit is contained in:
commit
6d7a5c79af
@ -470,7 +470,7 @@ void mdb_free_catalog(MdbHandle *mdb);
|
||||
GPtrArray *mdb_read_catalog(MdbHandle *mdb, int obj_type);
|
||||
MdbCatalogEntry *mdb_get_catalogentry_by_name(MdbHandle *mdb, const gchar* name);
|
||||
void mdb_dump_catalog(MdbHandle *mdb, int obj_type);
|
||||
char *mdb_get_objtype_string(int obj_type);
|
||||
const char *mdb_get_objtype_string(int obj_type);
|
||||
|
||||
/* table.c */
|
||||
MdbTableDef *mdb_alloc_tabledef(MdbCatalogEntry *entry);
|
||||
|
@ -18,10 +18,10 @@
|
||||
|
||||
#include "mdbtools.h"
|
||||
|
||||
char *
|
||||
const char *
|
||||
mdb_get_objtype_string(int obj_type)
|
||||
{
|
||||
static char *type_name[] = {"Form",
|
||||
static const char *type_name[] = {"Form",
|
||||
"Table",
|
||||
"Macro",
|
||||
"System Table",
|
||||
@ -35,7 +35,7 @@ static char *type_name[] = {"Form",
|
||||
"Database"
|
||||
};
|
||||
|
||||
if (obj_type > 11) {
|
||||
if (obj_type >= (int)(sizeof(type_name)/sizeof(type_name[0]))) {
|
||||
return NULL;
|
||||
} else {
|
||||
return type_name[obj_type];
|
||||
|
@ -1149,6 +1149,8 @@ SQLRETURN SQL_API SQLFreeStmt(
|
||||
struct _hdbc *dbc = (struct _hdbc *) stmt->hdbc;
|
||||
|
||||
TRACE("SQLFreeStmt");
|
||||
free(stmt->ole_str);
|
||||
stmt->ole_str = NULL;
|
||||
if (fOption==SQL_DROP) {
|
||||
if (!g_ptr_array_remove(dbc->statements, stmt))
|
||||
return SQL_INVALID_HANDLE;
|
||||
@ -1163,8 +1165,6 @@ SQLRETURN SQL_API SQLFreeStmt(
|
||||
/* Bound parameters not currently implemented */
|
||||
} else {
|
||||
}
|
||||
free(stmt->ole_str);
|
||||
stmt->ole_str = NULL;
|
||||
return SQL_SUCCESS;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user