diff options
| author | Marcello Stanisci <marcello.stanisci@inria.fr> | 2016-06-13 23:40:00 +0200 | 
|---|---|---|
| committer | Marcello Stanisci <marcello.stanisci@inria.fr> | 2016-06-13 23:40:00 +0200 | 
| commit | 18c22e3e2e97111c9e3717cfe4ac67d397b0456c (patch) | |
| tree | 007de187a25ac54bc6bb8a145f9b05f5a6989c1c /src | |
| parent | 62b7bbabed24185b69d3336552844b161085830a (diff) | |
fixing corrupted DLL (resulting from double call to json_decref())
Diffstat (limited to 'src')
| -rw-r--r-- | src/benchmark/taler-exchange-benchmark.c | 9 | 
1 files changed, 9 insertions, 0 deletions
diff --git a/src/benchmark/taler-exchange-benchmark.c b/src/benchmark/taler-exchange-benchmark.c index f2274e60..02b91f87 100644 --- a/src/benchmark/taler-exchange-benchmark.c +++ b/src/benchmark/taler-exchange-benchmark.c @@ -168,6 +168,12 @@ struct Coin {    unsigned int refresh;    /** +   * If the coin has to be refreshed, this value indicates +   * how much is left on this coin +   */ +  struct TALER_Amount left; + +  /**     * Refresh melt handle     */    struct TALER_EXCHANGE_RefreshMeltHandle *rmh; @@ -838,6 +844,9 @@ benchmark_run (void *cls)      json_decref (transfer_details);    }    json_decref (sender_details); +  sender_details = NULL; +  transfer_details = NULL; +    GNUNET_log (GNUNET_ERROR_TYPE_INFO,                "benchmark_run() returns\n");  }  | 
