Fix segfault in LumiPutResult when processed by genconf
Compare changes
@@ -37,7 +37,7 @@ DECLARE_ALGORITHM_FACTORY( LumiPutResult );
@@ -52,9 +52,9 @@ LumiPutResult::~LumiPutResult() {
In genconf the class is constructed but not initialized, so the destructor should not delete data members created at initialize without checking.
Note: I did not check, but I'm not sure I could use C++11 features in this branch.