The following commit has been merged in the master branch:
commit 541e3e3688adf8416e828e39f1d16ddee3bff86d
Author: Russ Allbery <[email protected]>
Date:   Tue Apr 13 14:42:35 2010 -0700

    Anchor libjpeg regex to avoid false positives on Pascal
    
    Similar to embedded-zlib, Pascal has a separate implementation of
    libjpeg that uses the same strings.  Anchor the match of the quantization
    table error string to avoid matching the Pascal version, which has a
    leading string length.

diff --git a/checks/binaries b/checks/binaries
index 3e7e463..2134ada 100644
--- a/checks/binaries
+++ b/checks/binaries
@@ -288,7 +288,7 @@ foreach my $file (sort keys %{$info->file_info}) {
     }
 
     if ($info->field('source') !~ '^libjpeg.*'
-       and $strings =~ /quantization tables are too coarse for baseline JPEG/) 
{
+       and $strings =~ /^Caution: quantization tables are too coarse for 
baseline JPEG/m) {
        tag "embedded-libjpeg", $file;
     }
 

-- 
Debian package checker


-- 
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]
Archive: http://lists.debian.org/[email protected]

Reply via email to