summaryrefslogtreecommitdiffstats
path: root/equipment.c
diff options
context:
space:
mode:
Diffstat (limited to 'equipment.c')
-rw-r--r--equipment.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/equipment.c b/equipment.c
index 2a96aec80..6396df0ca 100644
--- a/equipment.c
+++ b/equipment.c
@@ -23,7 +23,7 @@ void add_cylinder_description(cylinder_type_t *type)
return;
}
if (i < 100) {
- tank_info[i].name = desc;
+ tank_info[i].name = strdup(desc);
tank_info[i].ml = type->size.mliter;
tank_info[i].bar = type->workingpressure.mbar / 1000;
}
@@ -43,7 +43,7 @@ void add_weightsystem_description(weightsystem_t *weightsystem)
}
}
if (i < 100) {
- ws_info[i].name = desc;
+ ws_info[i].name = strdup(desc);
ws_info[i].grams = weightsystem->weight.grams;
}
}