MFH: Fixed bug #34968 (bz2 extension fails on to build on some win32 setups).

This commit is contained in:
Ilia Alshanetsky 2005-10-25 15:53:06 +00:00
parent 2c5c8c161c
commit e13d51cea3
2 changed files with 3 additions and 1 deletions

2
NEWS
View file

@ -2,6 +2,8 @@ PHP NEWS
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? Oct 2005, PHP 5.1 Release Candidate 4 ?? Oct 2005, PHP 5.1 Release Candidate 4
- Fixed fgetcsv() and fputcsv() inconsistency. (Dmitry) - Fixed fgetcsv() and fputcsv() inconsistency. (Dmitry)
- Fixed bug #34968 (bz2 extension fails on to build on some win32 setups).
(Ilia)
- Fixed bug #34957 (PHP doesn't respect ACLs for access checks). (Wez) - Fixed bug #34957 (PHP doesn't respect ACLs for access checks). (Wez)
- Fixed bug #34950 (Unable to get WSDL through proxy). (Dmitry) - Fixed bug #34950 (Unable to get WSDL through proxy). (Dmitry)
- Fixed bug #34938 (dns_get_record() doesn't resolve long hostnames and - Fixed bug #34938 (dns_get_record() doesn't resolve long hostnames and

View file

@ -441,7 +441,7 @@ PHP_FUNCTION(bzdecompress)
char *source, *dest; char *source, *dest;
int source_len, error; int source_len, error;
long small = 0; long small = 0;
#if defined(PHP_WIN32) && _MSC_VER < 1300 #if defined(PHP_WIN32)
unsigned __int64 size = 0; unsigned __int64 size = 0;
#else #else
unsigned long long size = 0; unsigned long long size = 0;