From: Alexei Sheplyakov Date: Tue, 19 Aug 2008 11:39:46 +0000 (+0400) Subject: [BUGFIX] Reclaiming the memory allocated for static objects *is* necessary. X-Git-Tag: release_1-5-0~63^2~11 X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=commitdiff_plain;h=aff357309f6611a59efb10d06d3dcfd3812a9ec5 [BUGFIX] Reclaiming the memory allocated for static objects *is* necessary. GiNaC allocates memory for static objects (i.e. flyweights, remember tables, etc), but doesn't free it. This is OK if the program lifetime matches libginac lifetime, since the OS will reclaim that memory anyway. However, if the program lifetime is different from that of libginac, this turns into a memory leak. This happens if someone dlopen's libginac.so, and dlclose's it later on (read: if someone uses GiNaC via scripting language bindings). symbol::autoname_prefix(): there's no need for dynamical memory allocation. remember_table::remember_tables(): likewise. function::registered_functions(): likewise. lib_init::~lib_init(): if library usage count drops to 0, reclaim the memory allocated for flyweights. --- diff --git a/ginac/function.pl b/ginac/function.pl index 3e447354..7a4d5e78 100644 --- a/ginac/function.pl +++ b/ginac/function.pl @@ -1330,8 +1330,8 @@ ${power_switch_statement} std::vector & function::registered_functions() { - static std::vector * rf = new std::vector; - return *rf; + static std::vector rf = std::vector(); + return rf; } bool function::lookup_remember_table(ex & result) const diff --git a/ginac/remember.cpp b/ginac/remember.cpp index faa89d38..701a27e7 100644 --- a/ginac/remember.cpp +++ b/ginac/remember.cpp @@ -183,8 +183,8 @@ void remember_table::init_table() std::vector & remember_table::remember_tables() { - static std::vector * rt = new std::vector; - return *rt; + static std::vector rt = std::vector(); + return rt; } } // namespace GiNaC diff --git a/ginac/symbol.cpp b/ginac/symbol.cpp index cf31cb49..6eedfef3 100644 --- a/ginac/symbol.cpp +++ b/ginac/symbol.cpp @@ -306,10 +306,10 @@ unsigned symbol::calchash() const /** Symbols not constructed with a string get one assigned using this * prefix and a number. */ -std::string & symbol::autoname_prefix() +std::string& symbol::autoname_prefix() { - static std::string *s = new std::string("symbol"); - return *s; + static std::string s("symbol"); + return s; } /** Return default TeX name for symbol. This recognizes some greek letters. */ diff --git a/ginac/utils.cpp b/ginac/utils.cpp index b55948b5..f44ed9fa 100644 --- a/ginac/utils.cpp +++ b/ginac/utils.cpp @@ -388,9 +388,58 @@ library_init::library_init() library_init::~library_init() { if (--count==0) { - // In theory, we would have to clean up here. But since we were - // only initializing memory in the ctor and that memory is reclaimed - // anyways by the OS when the program exits, we skip this. + // It's really necessary to clean up, since the program + // lifetime might not be the same as libginac.{so,dll} one + // (e.g. consider // dlopen/dlsym/dlclose sequence). + delete _num120_p; + delete _num_120_p; + delete _num60_p; + delete _num_60_p; + delete _num48_p; + delete _num_48_p; + delete _num30_p; + delete _num_30_p; + delete _num25_p; + delete _num_25_p; + delete _num24_p; + delete _num_24_p; + delete _num20_p; + delete _num_20_p; + delete _num18_p; + delete _num_18_p; + delete _num15_p; + delete _num_15_p; + delete _num12_p; + delete _num_12_p; + delete _num11_p; + delete _num_11_p; + delete _num10_p; + delete _num_10_p; + delete _num9_p; + delete _num_9_p; + delete _num8_p; + delete _num_8_p; + delete _num7_p; + delete _num_7_p; + delete _num6_p; + delete _num_6_p; + delete _num5_p; + delete _num_5_p; + delete _num4_p; + delete _num_4_p; + delete _num3_p; + delete _num_3_p; + delete _num2_p; + delete _num_2_p; + delete _num1_p; + delete _num_1_p; + delete _num1_2_p; + delete _num_1_2_p; + delete _num1_3_p; + delete _num_1_3_p; + delete _num1_4_p; + delete _num_1_4_p; + delete _num0_p; } }