SVN commit 814593 by asimha: Fixing bad memory management in the Conjunctions tool. CCMAIL: kstars-devel@kde.org M +3 -0 conjunctions.cpp --- trunk/KDE/kdeedu/kstars/kstars/tools/conjunctions.cpp #814592:814593 @@ -118,6 +118,9 @@ KSConjunct ksc; showConjunctions(ksc.findClosestApproach(*Object1, *Object2, startJD, stopJD, maxSeparation)); + delete Object1; + delete Object2; + }