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, Amazonbot, AhrefsBot, Bing, Majestic-12

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

» 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,707
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 >>