Re: [exim-dev] Latest releases on FreeBSD4

Páxina inicial
Borrar esta mensaxe
Responder a esta mensaxe
Autor: Paul Civati
Data:  
Para: exim-dev
Asunto: Re: [exim-dev] Latest releases on FreeBSD4
I wrote:

> #define va_copy(dest, src) do { memcpy(dest, src, sizeof(va_list)); } while (0);


Actually reading up I see that you shouldn't use the trailing semi-colon
in a macro and it was just the memcpy() missing semi-colon that was the
main cause.

-Paul-