exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 135172bae4ef2d587efce112fd350b52e5a2d7a4
parent 51647e6259e0492235720485a1f64ccef260b826
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sun, 19 Mar 2017 11:16:53 +0100

fix regression causing NPE

Diffstat:
Msrc/exchange/taler-exchange-httpd_db.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/exchange/taler-exchange-httpd_db.c b/src/exchange/taler-exchange-httpd_db.c @@ -401,7 +401,7 @@ TEH_DB_execute_refund (struct MHD_Connection *connection, (0 == memcmp (&tlp->details.refund->h_proposal_data, &refund->h_proposal_data, sizeof (struct GNUNET_HashCode))) && - (ref->rtransaction_id == refund->rtransaction_id) ) + (tlp->details.refund->rtransaction_id == refund->rtransaction_id) ) { ref = tlp->details.refund; refund_found = GNUNET_YES;