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
AhrefsBot, DotBot

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

Today's Birthdays
There are no member birthdays today.
» SmaugMuds » Bugfix Lists » AFKMud Bugfix List » [Bug] Line editor crashes whe...
Forum Rules | Mark all | Recent Posts

[Bug] Line editor crashes when overfilled
< Newer Topic :: Older Topic > AFKMud 2.01

Pages:<< prev 1 next >>
Post is unread #1 Oct 14, 2007 12:13 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: Line editor crashes when overfilled
Danger: Critical - Buffer overrun crash
Discovered in: AFKMud 2.01
Found by: John
Fixed by: Samson

---

editor.cpp, in struct editor_data

Locate:
   char line[49][81];


Change to:
   char line[max_buf_lines][81];


editor.cpp, char_data::start_editing

Locate:
         if( lines >= 49 || size > 4096 )


Change to:
         if( lines >= max_buf_lines || size > MSL )


Locate:
   if( lpos > 0 && lpos < 78 && lines < 49 )


Change to:
   if( lpos > 0 && lpos < 78 && lines < max_buf_lines )


editor.cpp, start_editing

Locate:
         if( lines >= 49 || size > 4096 )


Change to:
         if( lines >= max_buf_lines || size > MSL )


Locate:
   if( lpos > 0 && lpos < 78 && lines < 49 )


Change to:
   if( lpos > 0 && lpos < 78 && lines < max_buf_lines )


Classic case of not catching everything that needed to get changed. At some point along the way we decided to make it easier for us to change the number of lines a line editor can hold from 49 to 60. Don't remember exactly why, but we did. In doing so I decided to make the number of lines easily changed from one spot but forgot about other places the original 49 was used. So the code was trying to treat a 49 line buffer as though it had 60 lines, which is a Bad Thing(tm).

Pages:<< prev 1 next >>