Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 25 Apr 2007 14:44:59 +0400
From:      Anton Yuzhaninov <citrin@citrin.ru>
To:        freebsd-current@freebsd.org
Subject:   Re: clamd memory corruption (may be jemalloc related)
Message-ID:  <1952018890.20070425144459@citrin.ru>
In-Reply-To: <313993633.20070419232238@citrin.ru>
References:  <313993633.20070419232238@citrin.ru>

index | next in thread | previous in thread | raw e-mail

[-- Attachment #1 --]
AY> I try to test clamav 0.90.2 on current and got strange errors:

AY> LibClamAV Warning: Multipart/alternative MIME message contains no boundary header
AY> LibClamAV Warning: Multipart/ZZZZZZZZZZZZÇÇÇÇÀå MIME message contains no boundary header
AY> LibClamAV Warning: Multipart/related MIME message contains no boundary header

This is bug in clamav configure.

For current it writes to clamav-config.h
/* #undef CL_THREAD_SAFE */
instead of:
#define CL_THREAD_SAFE 1

A also report this to clamav bugzilla:
https://wwws.clamav.net/bugzilla/show_bug.cgi?id=482
(but by default reports can view only clamav developers).

-- 
 Anton Yuzhaninov.
[-- Attachment #2 --]
Index: configure.in
===================================================================
--- configure.in	(revision 3037)
+++ configure.in	(working copy)
@@ -440,7 +440,7 @@
     fi
     AC_DEFINE(C_SOLARIS,1,[os is solaris])
     ;;
-freebsd[45]*)
+freebsd[[45]]*)
     if test "$have_pthreads" = "yes"; then
 	THREAD_LIBS="-pthread -lc_r"
 	TH_SAFE="-thread-safe"
@@ -453,7 +453,7 @@
     AC_DEFINE(C_BSD,1,[os is freebsd 4 or 5])
     use_gethostbyname_r="no"
     ;;
-freebsd6*)
+freebsd[[67]]*)
     if test "$have_pthreads" = "yes"; then
 	THREAD_LIBS="-lthr"
 	TH_SAFE="-thread-safe"
help

Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1952018890.20070425144459>