[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[GNUnet-SVN] [taler-exchange] branch master updated (f9a86ba -> cb1548d)
From: |
gnunet |
Subject: |
[GNUnet-SVN] [taler-exchange] branch master updated (f9a86ba -> cb1548d) |
Date: |
Fri, 06 Apr 2018 00:36:54 +0200 |
This is an automated email from the git hooks/post-receive script.
dold pushed a change to branch master
in repository exchange.
from f9a86ba expand logging of wirewatch shutdown
new 2e65fa8 fix comment
new cb1548d avoid dangling pointer
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
src/bank-lib/bank_api_history.c | 2 +-
src/wire/plugin_wire_test.c | 12 +++++++++++-
2 files changed, 12 insertions(+), 2 deletions(-)
diff --git a/src/bank-lib/bank_api_history.c b/src/bank-lib/bank_api_history.c
index d2035e8..14a206a 100644
--- a/src/bank-lib/bank_api_history.c
+++ b/src/bank-lib/bank_api_history.c
@@ -156,7 +156,7 @@ parse_account_history (struct TALER_BANK_HistoryHandle *hh,
/**
* Function called when we're done processing the
- * HTTP /admin/add/incoming request.
+ * HTTP /history request.
*
* @param cls the `struct TALER_BANK_HistoryHandle`
* @param response_code HTTP response code, 0 on error
diff --git a/src/wire/plugin_wire_test.c b/src/wire/plugin_wire_test.c
index 11feaea..a81ccda 100644
--- a/src/wire/plugin_wire_test.c
+++ b/src/wire/plugin_wire_test.c
@@ -869,6 +869,12 @@ bhist_cb (void *cls,
GNUNET_free (subject);
wd.account_details = details->account_details;
+ GNUNET_break (NULL != whh->hh);
+
+ /* Once we get the sentinel element, the handle becomes invalid. */
+ if (TALER_BANK_DIRECTION_NONE == dir)
+ whh->hh = NULL;
+
if ( (NULL != whh->hres_cb) &&
(GNUNET_OK !=
whh->hres_cb (whh->hres_cb_cls,
@@ -1007,7 +1013,11 @@ static void
test_get_history_cancel (void *cls,
struct TALER_WIRE_HistoryHandle *whh)
{
- TALER_BANK_history_cancel (whh->hh);
+ if (NULL != whh->hh)
+ {
+ TALER_BANK_history_cancel (whh->hh);
+ whh->hh = NULL;
+ }
GNUNET_free (whh);
}
--
To stop receiving notification emails like this one, please contact
address@hidden
- [GNUnet-SVN] [taler-exchange] branch master updated (f9a86ba -> cb1548d),
gnunet <=