diff options
| author | Christian Grothoff <christian@grothoff.org> | 2016-06-02 09:02:50 +0200 | 
|---|---|---|
| committer | Christian Grothoff <christian@grothoff.org> | 2016-06-02 09:02:50 +0200 | 
| commit | 90aa044e619699eb1f719ac987a80bf5846013b5 (patch) | |
| tree | 49d9f9b84a9b5695f12ae225401a9ace915b3a25 /src | |
| parent | b405b0287597b29f1b06b8c62b9bfc51f37de52c (diff) | |
remove duplciate check
Diffstat (limited to 'src')
| -rw-r--r-- | src/exchange/taler-exchange-httpd_refresh.c | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/src/exchange/taler-exchange-httpd_refresh.c b/src/exchange/taler-exchange-httpd_refresh.c index 0f291e99..17e0c1b2 100644 --- a/src/exchange/taler-exchange-httpd_refresh.c +++ b/src/exchange/taler-exchange-httpd_refresh.c @@ -649,12 +649,11 @@ handle_refresh_reveal_json (struct MHD_Connection *connection,    res = GNUNET_OK;    for (i = 0; i < TALER_CNC_KAPPA - 1; i++)    { -    if (GNUNET_OK != res) -      break;      struct GNUNET_JSON_Specification tp_spec[] = {        GNUNET_JSON_spec_fixed_auto (NULL, &transfer_privs[i]),        GNUNET_JSON_spec_end ()      }; +      if (GNUNET_OK != res)        break;      res = TMH_PARSE_json_array (connection, | 
