From: Eric Anholt Date: Wed, 18 Aug 2010 22:59:31 +0000 (-0700) Subject: glsl: Fix leak-causing typo in destructor that made it another constructor. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4532feba14fcf4e39ea6e44dd2b6a290697bbd50;p=mesa.git glsl: Fix leak-causing typo in destructor that made it another constructor. --- diff --git a/src/glsl/ir_set_program_inouts.cpp b/src/glsl/ir_set_program_inouts.cpp index 658637775a4..534f602128b 100644 --- a/src/glsl/ir_set_program_inouts.cpp +++ b/src/glsl/ir_set_program_inouts.cpp @@ -51,7 +51,7 @@ public: hash_table_pointer_hash, hash_table_pointer_compare); } - ir_set_program_inouts_visitor() + ~ir_set_program_inouts_visitor() { hash_table_dtor(this->ht); }