From 596b13e3108e7ac99ae438fda639543179e5f05f Mon Sep 17 00:00:00 2001 From: "Lubomir I. Ivanov" Date: Fri, 28 Dec 2012 15:43:03 +0200 Subject: [PATCH] Free trip notes memory when deleting a trip Signed-off-by: Lubomir I. Ivanov Signed-off-by: Dirk Hohndel --- divelist.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/divelist.c b/divelist.c index bd610ac0a..bb940330c 100644 --- a/divelist.c +++ b/divelist.c @@ -1083,6 +1083,8 @@ static void delete_trip(dive_trip_t *trip) /* .. and free it */ if (trip->location) free(trip->location); + if (trip->notes) + free(trip->notes); free(trip); }