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, Google

Members: 0
Guests: 31
Stats
Files
Topics
Posts
Members
Newest Member
489
3,791
19,644
596
Elwood

Today's Birthdays
There are no member birthdays today.
» SmaugMuds » Bugfix Lists » LoP Bugfix List » auth_update crash
Forum Rules | Mark all | Recent Posts

auth_update crash
< Newer Topic :: Older Topic >

Pages:<< prev 1 next >>
Post is unread #1 Dec 24, 2017 12:15 am   
Go to the top of the page
Go to the bottom of the page

Remcon
Geomancer
GroupAdministrators
Posts1,917
JoinedJul 26, 2005

 
in auth.c function auth_update
find
void auth_update( void )
{
   CHAR_DATA *vch;
   AUTH_DATA *auth;
   int count = 0;
   bool pfile, authsave = false;

   for( auth = first_auth; auth; auth = auth->next )
   {

change it to
void auth_update( void )
{
   CHAR_DATA *vch;
   AUTH_DATA *auth, *auth_next;
   int count = 0;
   bool pfile, authsave = false;

   for( auth = first_auth; auth; auth = auth_next )
   {
      auth_next = auth->next;

If you have a character waiting in the auth list and hes destroyed etc... when it updates the auth list it will crash.

Pages:<< prev 1 next >>