-indent, doxygen
[oweals/gnunet.git] / src / datacache / plugin_datacache_postgres.c
index 6d7e2802112d5ae73648bf209644275eae15674c..150a9d5dc0d6a1b8bb50c4de5d45882078240019 100644 (file)
@@ -374,7 +374,7 @@ libgnunet_plugin_datacache_postgres_init (void *cls)
   struct GNUNET_DATACACHE_PluginFunctions *api;
   struct Plugin *plugin;
 
-  plugin = GNUNET_malloc (sizeof (struct Plugin));
+  plugin = GNUNET_new (struct Plugin);
   plugin->env = env;
 
   if (GNUNET_OK != init_connection (plugin))
@@ -383,7 +383,7 @@ libgnunet_plugin_datacache_postgres_init (void *cls)
     return NULL;
   }
 
-  api = GNUNET_malloc (sizeof (struct GNUNET_DATACACHE_PluginFunctions));
+  api = GNUNET_new (struct GNUNET_DATACACHE_PluginFunctions);
   api->cls = plugin;
   api->get = &postgres_plugin_get;
   api->put = &postgres_plugin_put;