From 60707d3aa8ba279d321f8bed26dedf46740fa5e7 Mon Sep 17 00:00:00 2001 From: kichik Date: Wed, 27 Jun 2007 11:27:56 +0000 Subject: [PATCH] nothing was returned for cl=0 git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5178 212acab6-be3b-0410-9dea-997c60f758d6 --- Contrib/NSISdl/httpget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Contrib/NSISdl/httpget.cpp b/Contrib/NSISdl/httpget.cpp index fb18e881..3da73760 100644 --- a/Contrib/NSISdl/httpget.cpp +++ b/Contrib/NSISdl/httpget.cpp @@ -487,7 +487,7 @@ __int64 JNL_HTTPGet::content_length() char *p=getheader("content-length:"); if (!p) return 0; __int64 cl = myatoi64(p); - if (cl > 0) return cl; + if (cl >= 0) return cl; // workaround for bug #1744091 // some buggy apache servers return negative values for sizes