aboutsummaryrefslogtreecommitdiff
path: root/src/sql.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sql.c')
-rw-r--r--src/sql.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sql.c b/src/sql.c
index a4b311e..80eb344 100644
--- a/src/sql.c
+++ b/src/sql.c
@@ -27,13 +27,13 @@ struct sql_list
static struct sql_list *sql_list;
/* Append CONN to the end of sql_list */
void
sql_register_conn (struct sqlconn *conn)
{
- struct sql_list *ent = xmalloc (sizeof *ent);
+ struct sql_list *ent = grecs_malloc (sizeof *ent);
ent->conn = *conn;
ent->next = sql_list;
sql_list = ent;
}
/* Find a configured connection that has the given IDENT */
@@ -195,13 +195,13 @@ sql_quote (struct dictionary *dict, void *handle, const char *input,
struct sqlconn *conn = handle;
size_t len, size;
char *output;
len = strlen (input);
size = 2 * len + 1;
- output = xmalloc (size);
+ output = grecs_malloc (size);
mysql_real_escape_string (&conn->mysql, output, input, len);
*poutput = output;
if (psize)
*psize = strlen (output);
return 0;
}

Return to:

Send suggestions and report system problems to the System administrator.