View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0008200 | Taler | exchange | public | 2024-01-22 15:30 | 2024-03-07 20:47 |
Reporter | fefe | Assigned To | Christian Grothoff | ||
Priority | normal | Severity | minor | Reproducibility | have not tried |
Status | closed | Resolution | fixed | ||
Fixed in Version | 0.9.4 | ||||
Summary | 0008200: TALER_EXCHANGE_management_revoke_denomination_key: memory leak | ||||
Description | This is in exchange/src/lib/exchange_api_management_revoke_denomination_key.c: 170 if (NULL == body) 171 { 172 GNUNET_break (0); 173 GNUNET_free (rh->url); 174 GNUNET_free (rh); 175 return NULL; 176 } 177 eh = TALER_EXCHANGE_curl_easy_get_ (rh->url); 178 if ( (NULL == eh) || 179 (GNUNET_OK != 180 TALER_curl_easy_post (&rh->post_ctx, 181 eh, 182 body)) ) 183 { 184 GNUNET_break (0); 185 if (NULL != eh) 186 curl_easy_cleanup (eh); 187 json_decref (body); 188 GNUNET_free (rh->url); 189 return NULL; 190 } This looks like a GNUNET_free(rh) is missing in the second cleanup clause. | ||||
Tags | No tags attached. | ||||
Date Modified | Username | Field | Change |
---|---|---|---|
2024-01-22 15:30 | fefe | New Issue | |
2024-01-22 15:30 | fefe | Status | new => assigned |
2024-01-22 15:30 | fefe | Assigned To | => Christian Grothoff |
2024-01-22 16:48 | Christian Grothoff | Status | assigned => resolved |
2024-01-22 16:48 | Christian Grothoff | Resolution | open => fixed |
2024-01-22 16:48 | Christian Grothoff | Note Added: 0020957 | |
2024-01-22 16:49 | Christian Grothoff | Relationship added | child of 0008112 |
2024-02-10 23:31 | Christian Grothoff | Fixed in Version | => 0.9.4 |
2024-03-07 20:47 | Christian Grothoff | Status | resolved => closed |