Hello,

in the file mailinglist.c in line 358, you might have this line more :

                arguments[i+5]=NULL;

So it will be now :

#ifdef EZMLMIDX
                arguments[0] = "ezmlm-make";
                arguments[1] = strtok(options, " ");
                while((arguments[i]=strtok(NULL, " ")) != NULL) {
                i++;
                }
                arguments[i]=owneremail;
                arguments[i+1]=TmpBuf2;
                arguments[i+2]=TmpBuf3;
                arguments[i+3]=ActionUser;
                arguments[i+4]=Domain;
                arguments[i+5]=NULL;
                execv(TmpBuf1, arguments);
#else
                execl(TmpBuf1, "ezmlm-make", TmpBuf2, TmpBuf3, ActionUser,
Domain , NULL);
#endif

If NULL is not present you have an error, the page contain no data.

Bye.

Nicolas CROISET
VDL Diffusion
http://www.vdldiffusion.com/dab/
Tel : +33 4 72 84 06 04   Fax : +33 4 72 84 06 02

Reply via email to