[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:26:12 UTC 2010


The following commit has been merged in the debian/unstable branch:
commit 854576ce9a234229f41029443bb5e6783755e7a7
Author: Török Edvin <edwin at clamav.net>
Date:   Wed Mar 24 18:23:01 2010 +0200

    bb #1879.
    
    Port LLVM commit r98349:
    Author: d0k
    Date: Fri Mar 12 07:54:59 2010
    New Revision: 98349
    
    Log:
    Use StringRef::substr instead of std::string::substr to avoid using a free'd
    string temporary. This should fix PR6590.

diff --git a/libclamav/c++/llvm/lib/Target/X86/X86ISelLowering.cpp b/libclamav/c++/llvm/lib/Target/X86/X86ISelLowering.cpp
index ae06ee4..2a30090 100644
--- a/libclamav/c++/llvm/lib/Target/X86/X86ISelLowering.cpp
+++ b/libclamav/c++/llvm/lib/Target/X86/X86ISelLowering.cpp
@@ -9851,7 +9851,8 @@ bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
         AsmPieces[2] == "${0:w}" &&
         IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
       AsmPieces.clear();
-      SplitString(IA->getConstraintString().substr(5), AsmPieces, ",");
+      const std::string &Constraints = IA->getConstraintString();
+      SplitString(StringRef(Constraints).substr(5), AsmPieces, ",");
       std::sort(AsmPieces.begin(), AsmPieces.end());
       if (AsmPieces.size() == 4 &&
           AsmPieces[0] == "~{cc}" &&

-- 
Debian repository for ClamAV



More information about the Pkg-clamav-commits mailing list