Merge branch 'master' into backend-thread-safety

This commit is contained in:
Evan Miller 2020-08-20 19:53:29 -04:00
commit 6d7a5c79af
3 changed files with 6 additions and 6 deletions

View File

@ -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);

View File

@ -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];

View File

@ -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;
}