[Mimedefang] patch for smfi_getsymval()

David F. Skoll dfs at roaringpenguin.com
Sat Apr 4 09:00:53 EDT 2009


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
bugs at sendmail.org

Regards,

David.



More information about the MIMEDefang mailing list