From: <av...@us...> - 2012-01-04 04:35:35
|
Revision: 3736 http://sc2.svn.sourceforge.net/sc2/?rev=3736&view=rev Author: avolkov Date: 2012-01-04 04:35:29 +0000 (Wed, 04 Jan 2012) Log Message: ----------- Fix uninitialized RECT member as per Louis Delacroix Modified Paths: -------------- trunk/sc2/src/uqm/planets/lander.c Modified: trunk/sc2/src/uqm/planets/lander.c =================================================================== --- trunk/sc2/src/uqm/planets/lander.c 2012-01-04 04:29:24 UTC (rev 3735) +++ trunk/sc2/src/uqm/planets/lander.c 2012-01-04 04:35:29 UTC (rev 3736) @@ -1285,6 +1285,7 @@ r.corner.x = 0; r.corner.y = 0; r.extent.width = 0; + r.extent.height = 0; s.origin.x = 0; s.origin.y = 0; s.frame = farray; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |