Login
User Name:

Password:



Register

Forgot your password?
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
SWRFUSS 1.4
Author: Various
Submitted by: Samson
SmaugFUSS 1.9.4
Author: Various
Submitted by: Samson
Users Online
CommonCrawl, AhrefsBot, Vladaar, Bing

Members: 1
Guests: 5
Stats
Files
Topics
Posts
Members
Newest Member
487
3,781
19,594
584
rodeoneerer

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