Login
User Name:

Password:



Register

Forgot your password?
do_owhere recursive
Author: Khonsu
Submitted by: Khonsu
Changes list / Addchange
Author: Khonsu
Submitted by: Khonsu
6Dragons mp3 sound pack
Author: Vladaar
Submitted by: Vladaar
AFKMud 2.2.3
Author: AFKMud Team
Submitted by: Samson
SWFOTEFUSS 1.5
Author: Various
Submitted by: Samson
Users Online
DotBot, AhrefsBot, Bing, Google

Members: 0
Guests: 21
Stats
Files
Topics
Posts
Members
Newest Member
489
3,793
19,649
597
Aileenutz

Today's Birthdays
There are no member birthdays today.
» SmaugMuds » Bugfix Lists » AFKMud Bugfix List » AFKMud Bug Archive » [Bug] Switched PC's cause cra...
Forum Rules | Mark all | Recent Posts

[Bug] Switched PC's cause crash in color processing
< Newer Topic :: Older Topic > AFKMud 1.77

Pages:<< prev 1 next >>
Post is unread #1 Nov 5, 2006 4:41 pm   
Go to the top of the page
Go to the bottom of the page

Samson
Black Hand
GroupAdministrators
Posts3,685
JoinedJan 1, 2002

 
Bug: Switched PC's cause crash in color processing
Danger: Low - Not an issue unless switched into an NPC.
Discovered in: AFKMud 1.77
Found by: Samson
Fixed by: Samson

---

color.c, colorcode

Locate:
                  /*
                   * Yes, this reset here is quite necessary to cancel out other things 
                   */
                  mudstrlcpy( dst, ANSI_RESET, dstlen );
                  if( ch )
                     mudstrlcat( dst, color_str( ch->desc->pagecolor, ch ), dstlen );


Change to:
                  /*
                   * Yes, this reset here is quite necessary to cancel out other things 
                   */
                  mudstrlcpy( dst, ANSI_RESET, dstlen );
                  if( ch && ch->desc )
                     mudstrlcat( dst, color_str( ch->desc->pagecolor, ch ), dstlen );


This particular part of the processing code does not verify that there is a valid descriptor before performing operations on it. Generally a bad idea. Most often affects switched imms, but could possibly be triggered by forcing linkdead players as well.

Pages:<< prev 1 next >>