From 29269c6686458c760b745a6e02c438cedeb63d56 Mon Sep 17 00:00:00 2001 From: ehofman Date: Thu, 22 Jul 2004 08:04:18 +0000 Subject: [PATCH] Correct a typo that produces segfault during cleanup on some systems. --- simgear/scene/model/animation.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/simgear/scene/model/animation.cxx b/simgear/scene/model/animation.cxx index 8a1c73e2..b6f9ecbc 100644 --- a/simgear/scene/model/animation.cxx +++ b/simgear/scene/model/animation.cxx @@ -963,8 +963,7 @@ SGTexMultipleAnimation::SGTexMultipleAnimation( SGPropertyNode *prop_root, SGTexMultipleAnimation::~SGTexMultipleAnimation () { - // delete _table; - delete _transform; + delete [] _transform; } int -- 2.39.5