aboutsummaryrefslogtreecommitdiff
path: root/src/datastore/plugin_datastore_template.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/datastore/plugin_datastore_template.c')
-rw-r--r--src/datastore/plugin_datastore_template.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/datastore/plugin_datastore_template.c b/src/datastore/plugin_datastore_template.c
index 2978de4fe..5e577b1bc 100644
--- a/src/datastore/plugin_datastore_template.c
+++ b/src/datastore/plugin_datastore_template.c
@@ -240,9 +240,9 @@ libgnunet_plugin_datastore_template_init (void *cls)
240 struct GNUNET_DATASTORE_PluginFunctions *api; 240 struct GNUNET_DATASTORE_PluginFunctions *api;
241 struct Plugin *plugin; 241 struct Plugin *plugin;
242 242
243 plugin = GNUNET_malloc (sizeof (struct Plugin)); 243 plugin = GNUNET_new (struct Plugin);
244 plugin->env = env; 244 plugin->env = env;
245 api = GNUNET_malloc (sizeof (struct GNUNET_DATASTORE_PluginFunctions)); 245 api = GNUNET_new (struct GNUNET_DATASTORE_PluginFunctions);
246 api->cls = plugin; 246 api->cls = plugin;
247 api->estimate_size = &template_plugin_estimate_size; 247 api->estimate_size = &template_plugin_estimate_size;
248 api->put = &template_plugin_put; 248 api->put = &template_plugin_put;