summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/equipment.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/equipment.c b/core/equipment.c
index 07e468c1c..ebdff9772 100644
--- a/core/equipment.c
+++ b/core/equipment.c
@@ -26,11 +26,13 @@
void free_weightsystem(weightsystem_t ws)
{
free((void *)ws.description);
+ ws.description = NULL;
}
static void free_cylinder(cylinder_t c)
{
free((void *)c.type.description);
+ c.type.description = NULL;
}
void copy_weights(const struct weightsystem_table *s, struct weightsystem_table *d)