Changeset 746 for branches


Ignore:
Timestamp:
05/31/06 08:34:59 (6 years ago)
Author:
wd
Message:

Fix incidental crashing bug when cmode_strip is used and a QUIT with no
message is given.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ithildin-1.1/modules/ircd/commands/quit.c

    r718 r746  
    4040         * they are in.  If this is the case they are parted from the channels 
    4141         * before the quit is sent. */ 
    42         if (!CLIENT_MASTER(cli) && msg != NULL) { 
     42        if (!CLIENT_MASTER(cli) && *msg != '\0') { 
    4343            clp = LIST_FIRST(&cli->chans); 
    4444            while (clp != NULL) { 
Note: See TracChangeset for help on using the changeset viewer.