aboutsummaryrefslogtreecommitdiff
path: root/src/datastore/plugin_datastore_postgres.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/datastore/plugin_datastore_postgres.c')
-rw-r--r--src/datastore/plugin_datastore_postgres.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/datastore/plugin_datastore_postgres.c b/src/datastore/plugin_datastore_postgres.c
index 6a96ad5d3..79217c998 100644
--- a/src/datastore/plugin_datastore_postgres.c
+++ b/src/datastore/plugin_datastore_postgres.c
@@ -838,14 +838,14 @@ libgnunet_plugin_datastore_postgres_init (void *cls)
838 struct GNUNET_DATASTORE_PluginFunctions *api; 838 struct GNUNET_DATASTORE_PluginFunctions *api;
839 struct Plugin *plugin; 839 struct Plugin *plugin;
840 840
841 plugin = GNUNET_malloc (sizeof (struct Plugin)); 841 plugin = GNUNET_new (struct Plugin);
842 plugin->env = env; 842 plugin->env = env;
843 if (GNUNET_OK != init_connection (plugin)) 843 if (GNUNET_OK != init_connection (plugin))
844 { 844 {
845 GNUNET_free (plugin); 845 GNUNET_free (plugin);
846 return NULL; 846 return NULL;
847 } 847 }
848 api = GNUNET_malloc (sizeof (struct GNUNET_DATASTORE_PluginFunctions)); 848 api = GNUNET_new (struct GNUNET_DATASTORE_PluginFunctions);
849 api->cls = plugin; 849 api->cls = plugin;
850 api->estimate_size = &postgres_plugin_estimate_size; 850 api->estimate_size = &postgres_plugin_estimate_size;
851 api->put = &postgres_plugin_put; 851 api->put = &postgres_plugin_put;