Core: use free_dc_contents() in delete_current_divecomputer()

delete_current_divecomputer() had some duplicate code to release
dive-computer resources. Use the free_dc_contents() function instead.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2018-10-16 07:57:03 +02:00 committed by Dirk Hohndel
parent 065c41b834
commit 6fd663f9b3

View file

@ -4157,11 +4157,7 @@ void delete_current_divecomputer(void)
/* remove the first one, so copy the second one in place of the first and free the second one
* be careful about freeing the no longer needed structures - since we copy things around we can't use free_dc()*/
struct divecomputer *fdc = dc->next;
free(dc->sample);
free((void *)dc->model);
free((void *)dc->serial);
free((void *)dc->fw_version);
free_events(dc->events);
free_dc_contents(dc);
memcpy(dc, fdc, sizeof(struct divecomputer));
free(fdc);
} else {