[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gnunet] branch master updated: -fix ftbfs
From: |
gnunet |
Subject: |
[gnunet] branch master updated: -fix ftbfs |
Date: |
Wed, 21 Jul 2021 18:13:52 +0200 |
This is an automated email from the git hooks/post-receive script.
grothoff pushed a commit to branch master
in repository gnunet.
The following commit(s) were added to refs/heads/master by this push:
new 0da83b0f7 -fix ftbfs
0da83b0f7 is described below
commit 0da83b0f725d16e7a687c0ba25fdacb40fd870de
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Wed Jul 21 18:10:37 2021 +0200
-fix ftbfs
---
src/pq/pq.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/pq/pq.c b/src/pq/pq.c
index 0b6ef8729..b260aa1db 100644
--- a/src/pq/pq.c
+++ b/src/pq/pq.c
@@ -128,9 +128,11 @@ GNUNET_PQ_extract_result (PGresult *result,
struct GNUNET_PQ_ResultSpec *rs,
int row)
{
+ unsigned int i;
+
if (NULL == result)
return GNUNET_SYSERR;
- for (unsigned int i = 0; NULL != rs[i].conv; i++)
+ for (i = 0; NULL != rs[i].conv; i++)
{
struct GNUNET_PQ_ResultSpec *spec;
enum GNUNET_GenericReturnValue ret;
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
- [gnunet] branch master updated: -fix ftbfs,
gnunet <=