aboutsummaryrefslogtreecommitdiff
path: root/src/datastore/plugin_datastore_sqlite.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_sqlite.c
parent92fd84dc7ef98452f848a62677c61a2b80b5835e (diff)
downloadgnunet-e0ca7357cd0bfedc5c29cb731b56279fef8da059.tar.gz
gnunet-e0ca7357cd0bfedc5c29cb731b56279fef8da059.zip
malloc -> new
Diffstat (limited to 'src/datastore/plugin_datastore_sqlite.c')
-rw-r--r--src/datastore/plugin_datastore_sqlite.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/datastore/plugin_datastore_sqlite.c b/src/datastore/plugin_datastore_sqlite.c
index bd344dbb1..f2e0454f9 100644
--- a/src/datastore/plugin_datastore_sqlite.c
+++ b/src/datastore/plugin_datastore_sqlite.c
@@ -1179,7 +1179,7 @@ libgnunet_plugin_datastore_sqlite_init (void *cls)
1179 database_shutdown (&plugin); 1179 database_shutdown (&plugin);
1180 return NULL; 1180 return NULL;
1181 } 1181 }
1182 api = GNUNET_malloc (sizeof (struct GNUNET_DATASTORE_PluginFunctions)); 1182 api = GNUNET_new (struct GNUNET_DATASTORE_PluginFunctions);
1183 api->cls = &plugin; 1183 api->cls = &plugin;
1184 api->estimate_size = &sqlite_plugin_estimate_size; 1184 api->estimate_size = &sqlite_plugin_estimate_size;
1185 api->put = &sqlite_plugin_put; 1185 api->put = &sqlite_plugin_put;