aboutsummaryrefslogtreecommitdiff
path: root/src/datastore/plugin_datastore_mysql.c
diff options
context:
space:
mode:
authorLRN <lrn1986@gmail.com>2013-12-19 06:00:23 +0000
committerLRN <lrn1986@gmail.com>2013-12-19 06:00:23 +0000
commite0ca7357cd0bfedc5c29cb731b56279fef8da059 (patch)
treeecfd47cf59bc00e656b53fd59c58f5038e342d65 /src/datastore/plugin_datastore_mysql.c
parent92fd84dc7ef98452f848a62677c61a2b80b5835e (diff)
downloadgnunet-e0ca7357cd0bfedc5c29cb731b56279fef8da059.tar.gz
gnunet-e0ca7357cd0bfedc5c29cb731b56279fef8da059.zip
malloc -> new
Diffstat (limited to 'src/datastore/plugin_datastore_mysql.c')
-rw-r--r--src/datastore/plugin_datastore_mysql.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/datastore/plugin_datastore_mysql.c b/src/datastore/plugin_datastore_mysql.c
index cf0172583..fab10b206 100644
--- a/src/datastore/plugin_datastore_mysql.c
+++ b/src/datastore/plugin_datastore_mysql.c
@@ -946,7 +946,7 @@ libgnunet_plugin_datastore_mysql_init (void *cls)
946 struct GNUNET_DATASTORE_PluginFunctions *api; 946 struct GNUNET_DATASTORE_PluginFunctions *api;
947 struct Plugin *plugin; 947 struct Plugin *plugin;
948 948
949 plugin = GNUNET_malloc (sizeof (struct Plugin)); 949 plugin = GNUNET_new (struct Plugin);
950 plugin->env = env; 950 plugin->env = env;
951 plugin->mc = GNUNET_MYSQL_context_create (env->cfg, "datastore-mysql"); 951 plugin->mc = GNUNET_MYSQL_context_create (env->cfg, "datastore-mysql");
952 if (NULL == plugin->mc) 952 if (NULL == plugin->mc)
@@ -1007,7 +1007,7 @@ libgnunet_plugin_datastore_mysql_init (void *cls)
1007#undef PINIT 1007#undef PINIT
1008#undef MRUNS 1008#undef MRUNS
1009 1009
1010 api = GNUNET_malloc (sizeof (struct GNUNET_DATASTORE_PluginFunctions)); 1010 api = GNUNET_new (struct GNUNET_DATASTORE_PluginFunctions);
1011 api->cls = plugin; 1011 api->cls = plugin;
1012 api->estimate_size = &mysql_plugin_estimate_size; 1012 api->estimate_size = &mysql_plugin_estimate_size;
1013 api->put = &mysql_plugin_put; 1013 api->put = &mysql_plugin_put;