memory allocation bug
Status: Alpha
Brought to you by:
flip
in cvsd-0.8.b/cvsd.c
623 /* build arguments array for `cvs pserver' */
624
625 args = (char **)malloc( (2 + verbose + num_repos + 1)
* sizeof(char) );
you must allocate 2+verbose+num_repos+1
of char *, not char
funny thing, everything DID work without any problems,
until i tried a cvsd.conf with 18 cvsroots
Hmm... thanks..