24 Sep
2019
24 Sep
'19
10:17 a.m.
Hi , Our static analyzer report an memory leak with add_options . We use namespace po = boost::program_options; po::options_description desc("Options"); desc.add_options() ("name", po::valuestd::string(), ...) // add option ; The issue reported in boost library file value_semantic.hpp:199 template<class T> typed_value<T>* value(T* v) { typed_value<T>* r = new typed_value<T>(v); return r; } memory is dynamically allocated here and return at line 201. Can anyone suggest how do we handle this memory leak.
1874
Age (days ago)
1874
Last active (days ago)
0 comments
1 participants
participants (1)
-
Vinitha Anish(UST,IN)