Signed-off-by: Anton Lundin <[email protected]>
---
 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

_______________________________________________
subsurface mailing list
[email protected]
http://lists.subsurface-divelog.org/cgi-bin/mailman/listinfo/subsurface

Reply via email to