[Gpredict-svn] SF.net SVN: gpredict:[619] trunk
Real time satellite tracking and orbit prediction
Status: Beta
Brought to you by:
csete
From: <cs...@us...> - 2010-05-20 19:44:25
|
Revision: 619 http://gpredict.svn.sourceforge.net/gpredict/?rev=619&view=rev Author: csete Date: 2010-05-20 19:44:15 +0000 (Thu, 20 May 2010) Log Message: ----------- Applied patch 3002348: Option context never freed (Thanks to Charles Suprin AA1VS). Modified Paths: -------------- trunk/ChangeLog trunk/NEWS trunk/src/main.c Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2010-05-20 19:33:58 UTC (rev 618) +++ trunk/ChangeLog 2010-05-20 19:44:15 UTC (rev 619) @@ -6,7 +6,10 @@ * src/first-time.c: Applied patch 3002345: Free catfilename. + * src/main.c: + Applied patch 3002348: Option context never freed. + 2010-05-04 Alexandru Csete <oz9aec at gmail.com> * src/gtk-sky-at-glance.c: Modified: trunk/NEWS =================================================================== --- trunk/NEWS 2010-05-20 19:33:58 UTC (rev 618) +++ trunk/NEWS 2010-05-20 19:44:15 UTC (rev 619) @@ -32,6 +32,7 @@ - Applied patch 2951724: Allow TX Doppler correction for FT-817, 857 and 897 (Thanks to Charles Suprin AA1VS). - Applied patch 3002344: Remove Uninitialized Jump (Thanks to Charles Suprin AA1VS). - Applied patch 3002345: Free catfilename (Thanks to Charles Suprin AA1VS). +- Applied patch 3002348: Option context never freed (Thanks to Charles Suprin AA1VS). - Slightly improved UI for the single-satellite view. - Command line options for cleaning user's TLE and transponder data, see --help for list. - Satellite Map: Added shadow to satellite marker and label to enhance visual appearance Modified: trunk/src/main.c =================================================================== --- trunk/src/main.c 2010-05-20 19:33:58 UTC (rev 618) +++ trunk/src/main.c 2010-05-20 19:44:15 UTC (rev 619) @@ -185,6 +185,7 @@ gtk_main (); + g_option_context_free(context); #ifdef WIN32 // Cleanup Windozze Sockets CloseWinSock2(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |