[Pkg-clamav-commits] [SCM] Debian repository for ClamAV branch, debian/unstable, updated. debian/0.95+dfsg-1-6156-g094ec9b

Török Edvin edwin at clamav.net
Sun Apr 4 01:03:52 UTC 2010


The following commit has been merged in the debian/unstable branch:
commit 118ca02e8790b7999e2846e39a74cee5d54d8cb1
Author: Török Edvin <edwin at clamav.net>
Date:   Wed Sep 2 15:25:55 2009 +0300

    Fix assert fail due to NULL pointer (LLVM SVN r80780).

diff --git a/libclamav/c++/llvm/lib/VMCore/Type.cpp b/libclamav/c++/llvm/lib/VMCore/Type.cpp
index ba190d9..1abeffa 100644
--- a/libclamav/c++/llvm/lib/VMCore/Type.cpp
+++ b/libclamav/c++/llvm/lib/VMCore/Type.cpp
@@ -492,7 +492,7 @@ void DerivedType::dropAllTypeUses() {
         tmp = AlwaysOpaqueTy;
         if (!tmp) {
           tmp = OpaqueType::get(getContext());
-          PATypeHolder* tmp2 = new PATypeHolder(AlwaysOpaqueTy);
+          PATypeHolder* tmp2 = new PATypeHolder(tmp);
           sys::MemoryFence();
           AlwaysOpaqueTy = tmp;
           Holder = tmp2;

-- 
Debian repository for ClamAV



More information about the Pkg-clamav-commits mailing list