[PATCH 17/17] Document found leaks

Anton Lundin glance at acc.umu.se
Wed Dec 17 23:47:58 PST 2014


Signed-off-by: Anton Lundin <glance at acc.umu.se>
---
 equipment.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/equipment.c b/equipment.c
index 32f7774..3725b50 100644
--- a/equipment.c
+++ b/equipment.c
@@ -23,6 +23,7 @@ void add_cylinder_description(cylinder_type_t *type)
 			return;
 	}
 	if (i < 100) {
+		// FIXME: leaked on exit
 		tank_info[i].name = strdup(desc);
 		tank_info[i].ml = type->size.mliter;
 		tank_info[i].bar = type->workingpressure.mbar / 1000;
@@ -43,6 +44,7 @@ void add_weightsystem_description(weightsystem_t *weightsystem)
 		}
 	}
 	if (i < 100) {
+		// FIXME: leaked on exit
 		ws_info[i].name = strdup(desc);
 		ws_info[i].grams = weightsystem->weight.grams;
 	}
-- 
2.1.0



More information about the subsurface mailing list