summaryrefslogtreecommitdiff
path: root/src/mint/taler-mint-httpd_deposit.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-09-21 15:39:59 +0200
committerChristian Grothoff <christian@grothoff.org>2015-09-21 15:39:59 +0200
commit49739455b0c522a9257966dcad92a76081450009 (patch)
tree8bad74ec4a4602923bf658beee88fdaea1bdf078 /src/mint/taler-mint-httpd_deposit.c
parentcf0249b4438b8859c97e5c499db1de5615e7e6ae (diff)
downloadexchange-49739455b0c522a9257966dcad92a76081450009.tar.gz
exchange-49739455b0c522a9257966dcad92a76081450009.tar.bz2
exchange-49739455b0c522a9257966dcad92a76081450009.zip
fix NPE if denomination key not found
Diffstat (limited to 'src/mint/taler-mint-httpd_deposit.c')
-rw-r--r--src/mint/taler-mint-httpd_deposit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mint/taler-mint-httpd_deposit.c b/src/mint/taler-mint-httpd_deposit.c
index c6ebe1d0d..39696f475 100644
--- a/src/mint/taler-mint-httpd_deposit.c
+++ b/src/mint/taler-mint-httpd_deposit.c
@@ -111,7 +111,7 @@ verify_and_execute_deposit (struct MHD_Connection *connection,
TMH_KS_release (key_state);
return TMH_DB_execute_deposit (connection,
- deposit);
+ deposit);
}