stephen.nil wrote:
> sendmail-8.14.3/libmilter/smfi.c 

> 832c832
> <                       ++s;    /* points to next macro name */
> ---
> >                     if( NULL != *s ) ++s;   /* points to next macro name */

Ugh...  comparing NULL to a dereferenced pointer?  How about:

        if (*s) ++s;

Thanks for tracking this down, but you really should report it at
[email protected]

Regards,

David.
_______________________________________________
NOTE: If there is a disclaimer or other legal boilerplate in the above
message, it is NULL AND VOID.  You may ignore it.

Visit http://www.mimedefang.org and http://www.roaringpenguin.com
MIMEDefang mailing list [email protected]
http://lists.roaringpenguin.com/mailman/listinfo/mimedefang

Reply via email to