[Spread-cvs] cvs commit: spread/daemon groups.c Readme.txt

jonathan at spread.org jonathan at spread.org
Mon Jun 16 21:05:49 EDT 2003


jonathan    03/06/16 21:05:49

  Modified:    daemon   groups.c Readme.txt
  Log:
  Fix bug where large groups overflow Mess_buf in groups.c.
  
  Revision  Changes    Path
  1.10      +1 -1      spread/daemon/groups.c
  
  Index: groups.c
  ===================================================================
  RCS file: /storage/cvsroot/spread/daemon/groups.c,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- groups.c	22 Sep 2002 02:56:52 -0000	1.9
  +++ groups.c	17 Jun 2003 01:05:48 -0000	1.10
  @@ -88,7 +88,7 @@
   static	configuration	Trans_memb;
   static	configuration	Reg_memb;
   static	membership_id	Reg_memb_id;
  -static	char		Mess_buf[10000];
  +static	char		Mess_buf[MAX_MESSAGE_BODY_LEN];
   
   static  groups_buf_link *Groups_bufs;
   static  int             Num_mess_gathered;
  
  
  
  1.31      +1 -0      spread/daemon/Readme.txt
  
  Index: Readme.txt
  ===================================================================
  RCS file: /storage/cvsroot/spread/daemon/Readme.txt,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -r1.30 -r1.31
  --- Readme.txt	17 Jun 2003 01:02:19 -0000	1.30
  +++ Readme.txt	17 Jun 2003 01:05:48 -0000	1.31
  @@ -65,6 +65,7 @@
   *) Increase listen backlog for accepting client connections.
   *) Fix Win32 project files to have correct path to source files. 
      (note CVS was always ok, but 3.17.0 release had incorrect path)
  +*) Fix bug where large groups overflow Mess_buf in groups.c.
   
   September 25, 2002 Ver 3.17.0
   ----------------------
  
  
  




More information about the Spread-cvs mailing list