Remove unnecessary casts

This commit is contained in:
Evan Miller
2020-12-28 22:30:20 -05:00
parent 658e91c2ae
commit 538711e450
16 changed files with 37 additions and 45 deletions

View File

@@ -54,7 +54,7 @@ static void cleanup (gpointer key, gpointer value, gpointer user_data);
ConnectParams* NewConnectParams ()
{
ConnectParams* params = (ConnectParams *) g_malloc(sizeof (ConnectParams));
ConnectParams* params = g_malloc(sizeof(ConnectParams));
if (!params)
return params;
@@ -298,7 +298,7 @@ static void cleanup (gpointer key, gpointer value, gpointer user_data)
int
ODBCINSTGetProperties(HODBCINSTPROPERTY hLastProperty)
{
hLastProperty->pNext = (HODBCINSTPROPERTY) malloc(sizeof(ODBCINSTPROPERTY));
hLastProperty->pNext = malloc(sizeof(ODBCINSTPROPERTY));
hLastProperty = hLastProperty->pNext;
memset(hLastProperty, 0, sizeof(ODBCINSTPROPERTY));
hLastProperty->nPromptType = ODBCINST_PROMPTTYPE_FILENAME;

View File

@@ -478,7 +478,7 @@ struct _hdbc* dbc;
TRACE("SQLAllocConnect");
env = (struct _henv *) henv;
dbc = (SQLHDBC) g_malloc0(sizeof(struct _hdbc));
dbc = g_malloc0(sizeof(struct _hdbc));
dbc->henv=env;
g_ptr_array_add(env->connections, dbc);
dbc->params = NewConnectParams ();
@@ -498,7 +498,7 @@ SQLRETURN SQL_API SQLAllocEnv(
struct _henv *env;
TRACE("SQLAllocEnv");
env = (SQLHENV) g_malloc0(sizeof(struct _henv));
env = g_malloc0(sizeof(struct _henv));
env->connections = g_ptr_array_new();
*phenv=env;
return SQL_SUCCESS;
@@ -514,7 +514,7 @@ SQLRETURN SQL_API SQLAllocStmt(
TRACE("SQLAllocStmt");
dbc = (struct _hdbc *) hdbc;
stmt = (SQLHSTMT) g_malloc0(sizeof(struct _hstmt));
stmt = g_malloc0(sizeof(struct _hstmt));
stmt->hdbc=dbc;
g_ptr_array_add(dbc->statements, stmt);
stmt->sql = mdb_sql_init();
@@ -572,7 +572,7 @@ SQLRETURN SQL_API SQLBindCol(
cur->varaddr = (char *) rgbValue;
} else {
/* didn't find it create a new one */
newitem = (struct _sql_bind_info *) g_malloc0(sizeof(struct _sql_bind_info));
newitem = g_malloc0(sizeof(struct _sql_bind_info));
newitem->column_number = icol;
newitem->column_bindtype = fCType;
newitem->column_bindlen = cbValueMax;