Login
User Name:

Password:



Register

Forgot your password?
void nanny_get_new_race -- comm.c
Mar 13, 2025 7:08 am
By Elwood
IPv6
Jan 25, 2025 10:45 pm
By Samson
mudstrlcpy and mudstrlcat
Jan 18, 2025 5:23 pm
By Samson
I3 and IMC
Jan 17, 2025 9:35 pm
By Samson
AFKMud 2.5.1
Jan 17, 2025 2:22 pm
By Samson
SWFotEFUSS 1.5.3
Author: Various
Submitted by: Samson
SWRFUSS 1.4.3
Author: Various
Submitted by: Samson
SmaugFUSS 1.9.8
Author: Various
Submitted by: Samson
AFKMud 2.5.2
Author: AFKMud Team
Submitted by: Samson
SmaugFUSS 1.9.7
Author: Various
Submitted by: Samson
Users Online
Anthropic, AhrefsBot, Sogou, Yandex, Bytespider

Members: 0
Guests: 8
Stats
Files
Topics
Posts
Members
Newest Member
507
3,812
19,722
591
TracySpencer

» SmaugMuds » Bugfix Lists » SmaugFUSS Bugfix List » [Bug] Improper comparison che...
Forum Rules | Mark all | Recent Posts

[Bug] Improper comparison checks in do_weather command
< Newer Topic :: Older Topic >

Pages:<< prev 1 next >>
Post is unread #1 Oct 5, 2008 7:23 pm   Last edited Oct 6, 2008 7:40 am by Kayle
Go to the top of the page
Go to the bottom of the page

Samson
Black Hand
GroupAdministrators
Posts3,707
JoinedJan 1, 2002

 
Bug: Improper comparison checks in do_weather command
Danger: Low, Causes undesirable messages to be shown with the weather command.
Found by: GCC 4.3
Fixed by: Samson

---

weather.c, do_weather

Locate:
if( getWindX( cell ) != 0 && getWindY != 0 )


Change to:
if( getWindX( cell ) != 0 && getWindY( cell ) != 0 )


Locate:
else if( getWindX( cell ) != 0 && getWindY == 0 )


Change to:
else if( getWindX( cell ) != 0 && getWindY( cell ) == 0 )


Locate:
else if( getWindX( cell ) == 0 && getWindY != 0 )


Change to:
else if( getWindX( cell ) == 0 && getWindY( cell ) != 0 )


GCC 4.3 issues a compiler warning when trying to compile SmaugFUSS 1.9:
cc1plus: warnings being treated as errors
weather.c: In function 'void do_weather(CHAR_DATA*, const char*)':
weather.c:3278: error: the address of 'int getWindY(WeatherCell*)' will never be NULL
weather.c:3333: error: the address of 'int getWindY(WeatherCell*)' will never be NULL
weather.c:3361: error: the address of 'int getWindY(WeatherCell*)' will never be NULL


Previous versions of GCC do not pick up this warning and it's likely this mistake has been causing some unintended results, though since I've not really played with the weather code I'm not sure what the mistake actually affects other than possibly displaying an incorrect wind message to the players.

[Edit:] Adjusted the Danger, And yeah, no real effect other than showing the wrong messages. And once again we find one of those little stupid errors that you get when you write complex systems in the wee hours of the morning. ;)

Pages:<< prev 1 next >>