aboutsummaryrefslogtreecommitdiff
path: root/src/exchangedb/plugin_exchangedb_postgres.c
diff options
context:
space:
mode:
authorMarco Boss <bossm8@bfh.ch>2022-04-02 14:25:04 +0200
committerMarco Boss <bossm8@bfh.ch>2022-04-02 14:25:04 +0200
commitca536c0379f316330a62508a754195eb53ba0e17 (patch)
tree00add096698a8bb81fb8fd39012990f633f7c591 /src/exchangedb/plugin_exchangedb_postgres.c
parent5880a8ec4faa75e1eb5ed80dd36ae978b9a1e54f (diff)
downloadexchange-ca536c0379f316330a62508a754195eb53ba0e17.tar.xz
fix return
Diffstat (limited to 'src/exchangedb/plugin_exchangedb_postgres.c')
-rw-r--r--src/exchangedb/plugin_exchangedb_postgres.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/exchangedb/plugin_exchangedb_postgres.c b/src/exchangedb/plugin_exchangedb_postgres.c
index 1d14cb730..53b84ce80 100644
--- a/src/exchangedb/plugin_exchangedb_postgres.c
+++ b/src/exchangedb/plugin_exchangedb_postgres.c
@@ -211,7 +211,7 @@ postgres_create_shard_tables (void *cls,
{
struct PostgresClosure *pg = cls;
struct GNUNET_PQ_Context *conn;
- enum GNUNET_GenericReturnValue ret;
+ enum GNUNET_GenericReturnValue ret = GNUNET_OK;
struct GNUNET_PQ_QueryParam params[] = {
GNUNET_PQ_query_param_uint32 (&idx),
GNUNET_PQ_query_param_end
@@ -254,7 +254,7 @@ postgres_setup_partitions (void *cls,
{
struct PostgresClosure *pg = cls;
struct GNUNET_PQ_Context *conn;
- enum GNUNET_GenericReturnValue ret;
+ enum GNUNET_GenericReturnValue ret = GNUNET_OK;
struct GNUNET_PQ_QueryParam params[] = {
GNUNET_PQ_query_param_uint32 (&num),
GNUNET_PQ_query_param_end
@@ -298,7 +298,7 @@ postgres_setup_foreign_servers (void *cls,
{
struct PostgresClosure *pg = cls;
struct GNUNET_PQ_Context *conn;
- enum GNUNET_GenericReturnValue ret;
+ enum GNUNET_GenericReturnValue ret = GNUNET_OK;
struct GNUNET_PQ_QueryParam params[] = {
GNUNET_PQ_query_param_uint32 (&num),
GNUNET_PQ_query_param_end