From 1f91a55358e101b75b320e2835c41d491c1814bd Mon Sep 17 00:00:00 2001 From: patthoyts Date: Mon, 11 Aug 2008 14:39:37 +0000 Subject: crc field from zlib data should be treated as unsigned for 64bit support [Bug 2046846] --- ChangeLog | 5 +++++ library/http/http.tcl | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 33365d7..1ae3885 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-08-11 Pat Thoyts + + * library/http/http.tcl: crc field from zlib data should be treated as + unsigned for 64bit support [Bug 2046846] + 2008-08-10 Miguel Sofer * generic/tclProc.c: completely removed ProcCompileProc, which was diff --git a/library/http/http.tcl b/library/http/http.tcl index 84a1da2..c5ad8d6 100644 --- a/library/http/http.tcl +++ b/library/http/http.tcl @@ -8,7 +8,7 @@ # See the file "license.terms" for information on usage and redistribution of # this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: http.tcl,v 1.67 2008/03/12 10:01:02 hobbs Exp $ +# RCS: @(#) $Id: http.tcl,v 1.68 2008/08/11 14:39:39 patthoyts Exp $ package require Tcl 8.4 # Keep this in sync with pkgIndex.tcl and with the install directories @@ -1406,7 +1406,7 @@ proc http::Gunzip {data} { incr pos } - binary scan [string range $data end-7 end] ii crc size + binary scan [string range $data end-7 end] iuiu crc size set inflated [zlib inflate [string range $data $pos end-8]] if { $crc != [set chk [zlib crc32 $inflated]] } { -- cgit v0.12