cl still complained about about not all control paths returning a value
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5180 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
e2554e819a
commit
3aa59a650a
1 changed files with 3 additions and 1 deletions
|
@ -487,11 +487,13 @@ __int64 JNL_HTTPGet::content_length()
|
||||||
char *p=getheader("content-length:");
|
char *p=getheader("content-length:");
|
||||||
if (!p) return 0;
|
if (!p) return 0;
|
||||||
__int64 cl = myatoi64(p);
|
__int64 cl = myatoi64(p);
|
||||||
if (cl >= 0) return cl;
|
if (cl > 0) return cl;
|
||||||
|
|
||||||
// workaround for bug #1744091
|
// workaround for bug #1744091
|
||||||
// some buggy apache servers return negative values for sizes
|
// some buggy apache servers return negative values for sizes
|
||||||
// over 2gb - fix it for them
|
// over 2gb - fix it for them
|
||||||
if (cl < 0)
|
if (cl < 0)
|
||||||
return (__int64)((unsigned int)(cl));
|
return (__int64)((unsigned int)(cl));
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue