Re: [exim-dev] Security release for CVE-2016-1531: 4.84.2, 4…

Top Page
Delete this message
Reply to this message
Author: Heiko Schlittermann
Date:  
To: The Doctor
CC: exim-dev
Subject: Re: [exim-dev] Security release for CVE-2016-1531: 4.84.2, 4.85.2, 4.86.2, 4.87 RC5]
Please,

which commit/version of the source do you use?

> >int. That's another issue. Changing the if … FALSE;
> >to
> > unsetenv(CS name);
> >
> >should work.
>
> I still get
>
> gcc environment.c
> environment.c: In function `cleanup_environment':
> environment.c:54: void value not ignored as it ought to be
> Makefile:624: recipe for target 'environment.o' failed


Please attach the environment.c file and send it to me.


Replace:
    if (unsetenv(CS name) < 0) return FALSE;
    else p = USS environ; /* RESTART from the beginning */


with:
    unsetenv(CS name);
    p = USS environ;


--
Heiko