]> granicus.if.org Git - php/commitdiff
WIN64 support
authorDmitry Stogov <dmitry@php.net>
Mon, 16 Apr 2007 08:09:56 +0000 (08:09 +0000)
committerDmitry Stogov <dmitry@php.net>
Mon, 16 Apr 2007 08:09:56 +0000 (08:09 +0000)
22 files changed:
TSRM/TSRM.h
TSRM/tsrm_win32.c
Zend/zend_API.c
Zend/zend_API.h
Zend/zend_alloc.c
Zend/zend_builtin_functions.c
Zend/zend_compile.c
Zend/zend_execute.c
Zend/zend_execute.h
Zend/zend_execute_API.c
Zend/zend_ini.c
Zend/zend_opcode.c
Zend/zend_types.h
Zend/zend_vm_def.h
Zend/zend_vm_execute.h
ext/standard/proc_open.c
main/SAPI.c
main/main.c
main/php_ini.c
main/streams/plain_wrapper.c
win32/build/config.w32
win32/select.c

index 5e3411b8f7500920698a4e1ae772cdca2b4a3bed..db24798be1eaf8875bb1afbea3825a4469082aed 100644 (file)
 #      define TSRM_API
 #endif
 
+#ifdef _WIN64
+typedef unsigned __int64 tsrm_intptr_t;
+typedef __int64 tsrm_uintptr_t;
+#else
+typedef long tsrm_intptr_t;
+typedef unsigned long tsrm_uintptr_t;
+#endif
+
 /* Only compile multi-threading functions if we're in ZTS mode */
 #ifdef ZTS
 
index ae9ea312f2450f0f729e86a81ecf569fb8d32fb5..f6d0c790102d8fa25d5a652454df70b4f3d73a61 100644 (file)
@@ -228,10 +228,10 @@ TSRM_API FILE *popen_ex(const char *command, const char *type, const char *cwd,
        proc = process_get(NULL TSRMLS_CC);
 
        if (read) {
-               fno = _open_osfhandle((long)in, _O_RDONLY | mode);
+               fno = _open_osfhandle((tsrm_intptr_t)in, _O_RDONLY | mode);
                CloseHandle(out);
        } else {
-               fno = _open_osfhandle((long)out, _O_WRONLY | mode);
+               fno = _open_osfhandle((tsrm_intptr_t)out, _O_WRONLY | mode);
                CloseHandle(in);
        }
 
index d3f58f660e1e62ed4326013e058412269c3c9e8e..ad58ac4490408e2257a7b6148af5695a4bb749d8 100644 (file)
@@ -44,7 +44,7 @@ ZEND_API int zend_get_parameters(int ht, int param_count, ...)
        TSRMLS_FETCH();
 
        p = EG(argument_stack).top_element-2;
-       arg_count = (ulong) *p;
+       arg_count = (int)(zend_uintptr_t) *p;
 
        if (param_count>arg_count) {
                return FAILURE;
@@ -82,7 +82,7 @@ ZEND_API int _zend_get_parameters_array(int ht, int param_count, zval **argument
        zval *param_ptr;
 
        p = EG(argument_stack).top_element-2;
-       arg_count = (ulong) *p;
+       arg_count = (int)(zend_uintptr_t) *p;
 
        if (param_count>arg_count) {
                return FAILURE;
@@ -122,7 +122,7 @@ ZEND_API int zend_get_parameters_ex(int param_count, ...)
        TSRMLS_FETCH();
 
        p = EG(argument_stack).top_element-2;
-       arg_count = (ulong) *p;
+       arg_count = (int)(zend_uintptr_t) *p;
 
        if (param_count>arg_count) {
                return FAILURE;
@@ -145,7 +145,7 @@ ZEND_API int _zend_get_parameters_array_ex(int param_count, zval ***argument_arr
        int arg_count;
 
        p = EG(argument_stack).top_element-2;
-       arg_count = (ulong) *p;
+       arg_count = (int)(zend_uintptr_t) *p;
 
        if (param_count>arg_count) {
                return FAILURE;
@@ -187,7 +187,7 @@ ZEND_API int zend_copy_parameters_array(int param_count, zval *argument_array TS
        int arg_count;
 
        p = EG(argument_stack).top_element-2;
-       arg_count = (ulong) *p;
+       arg_count = (int)(zend_uintptr_t) *p;
 
        if (param_count>arg_count) {
                return FAILURE;
@@ -698,7 +698,7 @@ static int zend_parse_va_args(int num_args, char *type_spec, va_list *va, int fl
        }
 
        p = EG(argument_stack).top_element-2;
-       arg_count = (ulong) *p;
+       arg_count = (int)(zend_uintptr_t) *p;
 
        if (num_args > arg_count) {
                zend_error(E_WARNING, "%s(): could not obtain parameters for parsing",
@@ -878,7 +878,7 @@ ZEND_API void zend_update_class_constants(zend_class_entry *class_type TSRMLS_DC
                                zend_update_class_constants(class_type->parent TSRMLS_CC);
                        }
 #if ZTS
-                       ALLOC_HASHTABLE(CG(static_members)[(long)(class_type->static_members)]);
+                       ALLOC_HASHTABLE(CG(static_members)[(zend_intptr_t)(class_type->static_members)]);
 #else
                        ALLOC_HASHTABLE(class_type->static_members);
 #endif
index f4d5833fb212954054d24dc8c52325593894f30a..861abc8a7dfcf586ac0f67f2376c8056f93b11b5 100644 (file)
@@ -160,7 +160,7 @@ typedef struct _zend_function_entry {
        INIT_OVERLOADED_CLASS_ENTRY_EX(class_container, class_name, functions, handle_fcall, handle_propget, handle_propset, NULL, NULL)
 
 #ifdef ZTS
-#      define CE_STATIC_MEMBERS(ce) (((ce)->type==ZEND_USER_CLASS)?(ce)->static_members:CG(static_members)[(long)(ce)->static_members])
+#      define CE_STATIC_MEMBERS(ce) (((ce)->type==ZEND_USER_CLASS)?(ce)->static_members:CG(static_members)[(zend_intptr_t)(ce)->static_members])
 #else
 #      define CE_STATIC_MEMBERS(ce) ((ce)->static_members)
 #endif
index b9a10dc14de16c1afdd4648b9a952700936125d7..5ac7f4ab2280874d15fbde7eb9633a17701eb044 100644 (file)
 # define ZEND_MM_COOKIES ZEND_DEBUG
 #endif
 
+#ifdef _WIN64
+# define PTR_FMT "0x%0.16I64x"
+/*
+#elif sizeof(long) == 8
+# define PTR_FMT "0x%0.16lx"
+*/
+#else
+# define PTR_FMT "0x%0.8lx"
+#endif
+
 #if ZEND_DEBUG
 void zend_debug_alloc_output(char *format, ...)
 {
@@ -1180,7 +1190,7 @@ static void zend_mm_check_leaks(zend_mm_heap *heap)
                                repeated = zend_mm_find_leaks(segment, p);
                                total += 1 + repeated;
                                if (repeated) {
-                                       zend_message_dispatcher(ZMSG_MEMORY_LEAK_REPEATED, (void *)repeated);
+                                       zend_message_dispatcher(ZMSG_MEMORY_LEAK_REPEATED, (void *)(zend_uintptr_t)repeated);
                                }
 #if ZEND_MM_CACHE
                        } else if (p->magic == MEM_BLOCK_CACHED) {
@@ -1221,7 +1231,7 @@ static int zend_mm_check_ptr(zend_mm_heap *heap, void *ptr, int silent ZEND_FILE
        if (!silent) {
                zend_message_dispatcher(ZMSG_LOG_SCRIPT_NAME, NULL);
                zend_debug_alloc_output("---------------------------------------\n");
-               zend_debug_alloc_output("%s(%d) : Block 0x%0.8lX status:\n" ZEND_FILE_LINE_RELAY_CC, (long) ptr);
+               zend_debug_alloc_output("%s(%d) : Block "PTR_FMT" status:\n" ZEND_FILE_LINE_RELAY_CC, ptr);
                if (__zend_orig_filename) {
                        zend_debug_alloc_output("%s(%d) : Actual location (location was relayed)\n" ZEND_FILE_LINE_ORIG_RELAY_CC);
                }
@@ -1253,7 +1263,7 @@ static int zend_mm_check_ptr(zend_mm_heap *heap, void *ptr, int silent ZEND_FILE
 
        if (p->info._size != ZEND_MM_NEXT_BLOCK(p)->info._prev) {
                if (!silent) {
-                       zend_debug_alloc_output("Invalid pointer: ((size=0x%0.8X) != (next.prev=0x%0.8X))\n", p->info._size, ZEND_MM_NEXT_BLOCK(p)->info._prev);
+                       zend_debug_alloc_output("Invalid pointer: ((size="PTR_FMT") != (next.prev="PTR_FMT"))\n", p->info._size, ZEND_MM_NEXT_BLOCK(p)->info._prev);
                        had_problems = 1;
                } else {
                        return zend_mm_check_ptr(heap, ptr, 0 ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_ORIG_RELAY_CC);
@@ -1262,7 +1272,7 @@ static int zend_mm_check_ptr(zend_mm_heap *heap, void *ptr, int silent ZEND_FILE
        if (p->info._prev != ZEND_MM_GUARD_BLOCK &&
            ZEND_MM_PREV_BLOCK(p)->info._size != p->info._prev) {
                if (!silent) {
-                       zend_debug_alloc_output("Invalid pointer: ((prev=0x%0.8X) != (prev.size=0x%0.8X))\n", p->info._prev, ZEND_MM_PREV_BLOCK(p)->info._size);
+                       zend_debug_alloc_output("Invalid pointer: ((prev="PTR_FMT") != (prev.size="PTR_FMT"))\n", p->info._prev, ZEND_MM_PREV_BLOCK(p)->info._size);
                        had_problems = 1;
                } else {
                        return zend_mm_check_ptr(heap, ptr, 0 ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_ORIG_RELAY_CC);
index ed2ba749c409981f5b82d7f4e6a83e549e8b2596..0ce917d3274f3cde01062aee494d44a26e0f11cd 100644 (file)
@@ -172,14 +172,14 @@ ZEND_FUNCTION(func_num_args)
        int arg_count;
 
        p = EG(argument_stack).top_element-1-1;
-       arg_count = (ulong) *p;         /* this is the amount of arguments passed to func_num_args(); */
+       arg_count = (int)(zend_uintptr_t) *p;           /* this is the amount of arguments passed to func_num_args(); */
        p -= 1+arg_count;
        if (*p) {
                zend_error(E_ERROR, "func_num_args(): Can't be used as a function parameter");
        }
        --p;
        if (p>=EG(argument_stack).elements) {
-               RETURN_LONG((ulong) *p);
+               RETURN_LONG((long)(zend_uintptr_t) *p);
        } else {
                zend_error(E_WARNING, "func_num_args():  Called from the global scope - no function context");
                RETURN_LONG(-1);
@@ -210,7 +210,7 @@ ZEND_FUNCTION(func_get_arg)
        }
 
        p = EG(argument_stack).top_element-1-1;
-       arg_count = (ulong) *p;         /* this is the amount of arguments passed to func_get_arg(); */
+       arg_count = (int)(zend_uintptr_t) *p;           /* this is the amount of arguments passed to func_get_arg(); */
        p -= 1+arg_count;
        if (*p) {
                zend_error(E_ERROR, "func_get_arg(): Can't be used as a function parameter");
@@ -220,7 +220,7 @@ ZEND_FUNCTION(func_get_arg)
                zend_error(E_WARNING, "func_get_arg():  Called from the global scope - no function context");
                RETURN_FALSE;
        }
-       arg_count = (ulong) *p;
+       arg_count = (int)(zend_uintptr_t) *p;
 
        if (requested_offset>=arg_count) {
                zend_error(E_WARNING, "func_get_arg():  Argument %ld not passed to function", requested_offset);
@@ -244,7 +244,7 @@ ZEND_FUNCTION(func_get_args)
        int i;
 
        p = EG(argument_stack).top_element-1-1;
-       arg_count = (ulong) *p;         /* this is the amount of arguments passed to func_get_args(); */
+       arg_count = (int)(zend_uintptr_t) *p;           /* this is the amount of arguments passed to func_get_args(); */
        p -= 1+arg_count;
        if (*p) {
                zend_error(E_ERROR, "func_get_args(): Can't be used as a function parameter");
@@ -255,7 +255,7 @@ ZEND_FUNCTION(func_get_args)
                zend_error(E_WARNING, "func_get_args():  Called from the global scope - no function context");
                RETURN_FALSE;
        }
-       arg_count = (ulong) *p;
+       arg_count = (int)(zend_uintptr_t) *p;
 
 
        array_init(return_value);
@@ -1655,7 +1655,7 @@ static zval *debug_backtrace_get_args(void ***curpos TSRMLS_DC)
 {
        void **p = *curpos - 2;
        zval *arg_array, **arg;
-       int arg_count = (ulong) *p;
+       int arg_count = (int)(zend_uintptr_t) *p;
 
        *curpos -= (arg_count+2);
 
index dee710318ffd78a980097098310ec35be364d791..3d4afa8f8124b4e63947e862cf06ba0b1883832d 100644 (file)
@@ -4189,7 +4189,7 @@ ZEND_API void zend_initialize_class_data(zend_class_entry *ce, zend_bool nullify
                        CG(static_members) = realloc(CG(static_members), (n+1)*sizeof(HashTable*));
                        CG(static_members)[n] = NULL;
                }
-               ce->static_members = (HashTable*)n;
+               ce->static_members = (HashTable*)(zend_intptr_t)n;
 #else
                ce->static_members = NULL;
 #endif
index 86239fa44ab9d4152f60d86ccc25d7dbdcd717b5..dd0faeb1318c7ae0f737208ec335ea88b0d0cafa 100644 (file)
@@ -104,15 +104,15 @@ static inline void zend_pzval_unlock_free_func(zval *z)
 
 #define FREE_OP(should_free) \
        if (should_free.var) { \
-               if ((long)should_free.var & 1L) { \
-                       zval_dtor((zval*)((long)should_free.var & ~1L)); \
+               if ((zend_uintptr_t)should_free.var & 1L) { \
+                       zval_dtor((zval*)((zend_uintptr_t)should_free.var & ~1L)); \
                } else { \
                        zval_ptr_dtor(&should_free.var); \
                } \
        }
 
 #define FREE_OP_IF_VAR(should_free) \
-       if (should_free.var != NULL && (((long)should_free.var & 1L) == 0)) { \
+       if (should_free.var != NULL && (((zend_uintptr_t)should_free.var & 1L) == 0)) { \
                zval_ptr_dtor(&should_free.var); \
        }
 
@@ -121,9 +121,9 @@ static inline void zend_pzval_unlock_free_func(zval *z)
                zval_ptr_dtor(&should_free.var); \
        }
 
-#define TMP_FREE(z) (zval*)(((long)(z)) | 1L)
+#define TMP_FREE(z) (zval*)(((zend_uintptr_t)(z)) | 1L)
 
-#define IS_TMP_FREE(should_free) ((long)should_free.var & 1L)
+#define IS_TMP_FREE(should_free) ((zend_uintptr_t)should_free.var & 1L)
 
 #define INIT_PZVAL_COPY(z,v) \
        (z)->value = (v)->value; \
index a206f003ed077c88a5857316233c51e092467bf8..db68fe1c93b2eb6199d2d4d214dfa75bbcee6d66 100644 (file)
@@ -146,7 +146,7 @@ ZEND_API int zval_update_constant_ex(zval **pp, void *arg, zend_class_entry *sco
 static inline void zend_ptr_stack_clear_multiple(TSRMLS_D)
 {
        void **p = EG(argument_stack).top_element-2;
-       int delete_count = (ulong) *p;
+       int delete_count = (int)(zend_uintptr_t) *p;
 
        EG(argument_stack).top -= (delete_count+2);
        while (--delete_count>=0) {
@@ -160,7 +160,7 @@ static inline void zend_ptr_stack_clear_multiple(TSRMLS_D)
 static inline int zend_ptr_stack_get_arg(int requested_arg, void **data TSRMLS_DC)
 {
        void **p = EG(argument_stack).top_element-2;
-       int arg_count = (ulong) *p;
+       int arg_count = (int)(zend_uintptr_t) *p;
 
        if (requested_arg>arg_count) {
                return FAILURE;
index 2fb02c421a88308d2b618efc03354bd77832479d..f51289a94c6a9198cd25cdec8c5518b70e746210 100644 (file)
@@ -451,7 +451,7 @@ ZEND_API int zend_is_true(zval *op)
 ZEND_API int zval_update_constant_ex(zval **pp, void *arg, zend_class_entry *scope TSRMLS_DC)
 {
        zval *p = *pp;
-       zend_bool inline_change = (zend_bool) (unsigned long) arg;
+       zend_bool inline_change = (zend_bool) (zend_uintptr_t) arg;
        zval const_value;
 
        if (Z_TYPE_P(p) == IS_CONSTANT) {
@@ -867,7 +867,7 @@ int zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache TS
                                if (fci->no_separation) {
                                        if(i) {
                                                /* hack to clean up the stack */
-                                               zend_ptr_stack_n_push(&EG(argument_stack), 2, (void *) (long) i, NULL);
+                                               zend_ptr_stack_n_push(&EG(argument_stack), 2, (void *) (zend_uintptr_t) i, NULL);
                                                zend_ptr_stack_clear_multiple(TSRMLS_C);
                                        }
 
@@ -908,7 +908,7 @@ int zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache TS
                fci->param_count = 2;
        }
 
-       zend_ptr_stack_2_push(&EG(argument_stack), (void *) (long) fci->param_count, NULL);
+       zend_ptr_stack_2_push(&EG(argument_stack), (void *) (zend_uintptr_t) fci->param_count, NULL);
 
        original_function_state_ptr = EG(function_state_ptr);
        EG(function_state_ptr) = &EX(function_state);
index 89ab5bc41236d9c6e2f5759ee1aed3fcf28ed95f..4e05cec4d708bdd55cb793e5242d7187a71c69f2 100644 (file)
@@ -225,7 +225,7 @@ static int zend_ini_refresh_cache(zend_ini_entry *p, int stage TSRMLS_DC)
 
 ZEND_API void zend_ini_refresh_caches(int stage TSRMLS_DC)
 {
-       zend_hash_apply_with_argument(EG(ini_directives), (apply_func_arg_t) zend_ini_refresh_cache, (void *)(long) stage TSRMLS_CC);
+       zend_hash_apply_with_argument(EG(ini_directives), (apply_func_arg_t) zend_ini_refresh_cache, (void *)(zend_intptr_t) stage TSRMLS_CC);
 }
 #endif
 
index e352deccdd66ce05003f772d809a4c4584cad6b2..8621dc12b16084f66666d53991259ba2236c4bdc 100644 (file)
@@ -160,7 +160,7 @@ ZEND_API int zend_cleanup_class_data(zend_class_entry **pce TSRMLS_DC)
                zend_hash_destroy(CE_STATIC_MEMBERS(*pce));
                FREE_HASHTABLE(CE_STATIC_MEMBERS(*pce));
 #ifdef ZTS
-               CG(static_members)[(long)((*pce)->static_members)] = NULL;
+               CG(static_members)[(zend_intptr_t)((*pce)->static_members)] = NULL;
 #else
                (*pce)->static_members = NULL;
 #endif
index b357a2075f3cc4d85d80c6610fd0f6d8de29e9e0..dad27860099256cb9d384f0183e9645f9707aaff 100644 (file)
@@ -28,6 +28,14 @@ typedef unsigned int zend_uint;
 typedef unsigned long zend_ulong;
 typedef unsigned short zend_ushort;
 
+#ifdef _WIN64
+typedef unsigned __int64 zend_intptr_t;
+typedef __int64 zend_uintptr_t;
+#else
+typedef long zend_intptr_t;
+typedef unsigned long zend_uintptr_t;
+#endif
+
 typedef unsigned int zend_object_handle;
 typedef struct _zend_object_handlers zend_object_handlers;
 
index e5edf1aaf13fdf42f54260c73c471db9594e5b63..2abcf6a434bce33a3da9349b2597983c5afdfbe0 100644 (file)
@@ -1857,7 +1857,7 @@ ZEND_VM_HELPER(zend_do_fcall_common_helper, ANY, ANY)
                }
        }
 
-       zend_ptr_stack_2_push(&EG(argument_stack), (void *) opline->extended_value, NULL);
+       zend_ptr_stack_2_push(&EG(argument_stack), (void *)(zend_uintptr_t)opline->extended_value, NULL);
 
        EX_T(opline->result.u.var).var.ptr_ptr = &EX_T(opline->result.u.var).var.ptr;
 
@@ -1900,7 +1900,7 @@ ZEND_VM_HELPER(zend_do_fcall_common_helper, ANY, ANY)
                        ulong arg_count;
 
                        p = (zval **) EG(argument_stack).top_element-2;
-                       arg_count = (ulong) *p;
+                       arg_count = (ulong)(zend_uintptr_t) *p;
 
                        while (arg_count>0) {
                                zend_verify_arg_type(EX(function_state).function, ++i, *(p-arg_count) TSRMLS_CC);
index cdbc4afe27f00a39ba3283c9e54e84ea975e30ca..dc1758b1758cd4f01f82db9fbad54299eb58b48e 100644 (file)
@@ -145,7 +145,7 @@ static int zend_do_fcall_common_helper_SPEC(ZEND_OPCODE_HANDLER_ARGS)
                }
        }
 
-       zend_ptr_stack_2_push(&EG(argument_stack), (void *) opline->extended_value, NULL);
+       zend_ptr_stack_2_push(&EG(argument_stack), (void *)(zend_uintptr_t)opline->extended_value, NULL);
 
        EX_T(opline->result.u.var).var.ptr_ptr = &EX_T(opline->result.u.var).var.ptr;
 
@@ -188,7 +188,7 @@ static int zend_do_fcall_common_helper_SPEC(ZEND_OPCODE_HANDLER_ARGS)
                        ulong arg_count;
 
                        p = (zval **) EG(argument_stack).top_element-2;
-                       arg_count = (ulong) *p;
+                       arg_count = (ulong)(zend_uintptr_t) *p;
 
                        while (arg_count>0) {
                                zend_verify_arg_type(EX(function_state).function, ++i, *(p-arg_count) TSRMLS_CC);
index 2fc8e6eae8eac5f8eabd49f125652daa6965690a..df0a8cd83c9340ad496ac3aa89b9b33b13640a37 100644 (file)
@@ -946,7 +946,7 @@ PHP_FUNCTION(proc_open)
                                                break;
                                }
 #ifdef PHP_WIN32
-                               stream = php_stream_fopen_from_fd(_open_osfhandle((long)descriptors[i].parentend,
+                               stream = php_stream_fopen_from_fd(_open_osfhandle((zend_intptr_t)descriptors[i].parentend,
                                                        descriptors[i].mode_flags), mode_string, NULL);
 #else
                                stream = php_stream_fopen_from_fd(descriptors[i].parentend, mode_string, NULL);
index bb362272797fac83cbab5ac0320f08bf2f6ef494..7db33e9e4bcdb6209b83963aa8d0fb5f90e1eae6 100644 (file)
@@ -541,7 +541,7 @@ SAPI_API int sapi_header_op(sapi_header_op_enum op, void *arg TSRMLS_DC)
 
        switch (op) {
                case SAPI_HEADER_SET_STATUS:
-                       sapi_update_response_code((long) arg TSRMLS_CC);
+                       sapi_update_response_code((int)(zend_intptr_t) arg TSRMLS_CC);
                        return SUCCESS;
 
                case SAPI_HEADER_REPLACE:
index 1d29aa3be871ba02aaba4697fcabb390e82baed1..4f5c8aa301e0822da34b46c8487aaed8271f993e 100644 (file)
@@ -974,7 +974,7 @@ static void php_message_handler_for_zend(long message, void *data)
                                if (message==ZMSG_MEMORY_LEAK_DETECTED) {
                                        zend_leak_info *t = (zend_leak_info *) data;
 
-                                       snprintf(memory_leak_buf, 512, "%s(%d) :  Freeing 0x%.8lX (%zu bytes), script=%s\n", t->filename, t->lineno, (unsigned long)t->addr, t->size, SAFE_FILENAME(SG(request_info).path_translated));
+                                       snprintf(memory_leak_buf, 512, "%s(%d) :  Freeing 0x%.8lX (%zu bytes), script=%s\n", t->filename, t->lineno, (zend_uintptr_t)t->addr, t->size, SAFE_FILENAME(SG(request_info).path_translated));
                                        if (t->orig_filename) {
                                                char relay_buf[512];
 
@@ -982,7 +982,7 @@ static void php_message_handler_for_zend(long message, void *data)
                                                strlcat(memory_leak_buf, relay_buf, sizeof(memory_leak_buf));
                                        }
                                } else {
-                                       unsigned long leak_count = (unsigned long) data;
+                                       unsigned long leak_count = (zend_uintptr_t) data;
 
                                        snprintf(memory_leak_buf, 512, "Last leak repeated %ld time%s\n", leak_count, (leak_count>1?"s":""));
                                }
index 781014b0b77e6e2a8c5c42ed36db2e85c2d01306..5fe320eeafe6c64df8880e7b3dfa7d7bf5b5ac95 100644 (file)
@@ -142,7 +142,7 @@ PHPAPI void display_ini_entries(zend_module_entry *module)
        }
        php_info_print_table_start();
        php_info_print_table_header(3, "Directive", "Local Value", "Master Value");
-       zend_hash_apply_with_argument(EG(ini_directives), (apply_func_arg_t) php_ini_displayer, (void *) (long) module_number TSRMLS_CC);
+       zend_hash_apply_with_argument(EG(ini_directives), (apply_func_arg_t) php_ini_displayer, (void *) (zend_intptr_t) module_number TSRMLS_CC);
        php_info_print_table_end();
 }
 /* }}} */
@@ -590,7 +590,7 @@ PHPAPI int cfg_get_long(char *varname, long *result)
        zval *tmp, var;
        
        if (zend_hash_find(&configuration_hash, varname, strlen(varname) + 1, (void **) &tmp) == FAILURE) {
-               *result = (long) NULL;
+               *result = 0;
                return FAILURE;
        }
        var = *tmp;
index 8e31d02bc596e88438b0cd8415496515b867943e..4b83aa7189014e44783da928e3a0b3cddead67ca 100644 (file)
@@ -223,9 +223,9 @@ PHPAPI php_stream *_php_stream_fopen_from_fd(int fd, const char *mode, const cha
                }
 #elif defined(PHP_WIN32)
                {
-                       long handle = _get_osfhandle(self->fd);
+                       zend_uintptr_t handle = _get_osfhandle(self->fd);
 
-                       if (handle != 0xFFFFFFFF) {
+                       if (handle != (zend_uintptr_t)INVALID_HANDLE_VALUE) {
                                self->is_pipe = GetFileType((HANDLE)handle) == FILE_TYPE_PIPE;
                        }
                }
@@ -261,9 +261,9 @@ PHPAPI php_stream *_php_stream_fopen_from_file(FILE *file, const char *mode STRE
                }
 #elif defined(PHP_WIN32)
                {
-                       long handle = _get_osfhandle(self->fd);
+                       zend_uintptr_t handle = _get_osfhandle(self->fd);
 
-                       if (handle != 0xFFFFFFFF) {
+                       if (handle != (zend_uintptr_t)INVALID_HANDLE_VALUE) {
                                self->is_pipe = GetFileType((HANDLE)handle) == FILE_TYPE_PIPE;
                        }
                }
@@ -601,7 +601,7 @@ static int php_stdiop_set_option(php_stream *stream, int option, int value, void
                                return -1;
                        }
 
-                       if ((long) ptrparam == PHP_STREAM_LOCK_SUPPORTED) {
+                       if ((zend_uintptr_t) ptrparam == PHP_STREAM_LOCK_SUPPORTED) {
                                return 0;
                        }
 
index ab6191ab2bce609be538c3653b0a1b44bc245e8c..4ee2dc8c2b54a66c944c65598ab167e1f6c0803f 100644 (file)
@@ -126,8 +126,7 @@ if (VCVERS >= 14) {
        // disable annoying warnings.  In addition, time_t defaults
        // to 64-bit.  Ask for 32-bit.
        if (X64) {
-               ADD_FLAG('CFLAGS', ' /wd4996 ');
-//             ADD_FLAG('CFLAGS', ' /wd4996 /Wp64 ');
+               ADD_FLAG('CFLAGS', ' /wd4996 /Wp64 ');
        } else {
                ADD_FLAG('CFLAGS', ' /wd4996 /D_USE_32BIT_TIME_T=1 ');
        }
index 4860d1775e5346d955fb7bb2f87d77317de128f8..b69c712d2464c56579d093267133c5e6f60d4d16 100644 (file)
@@ -63,8 +63,8 @@ PHPAPI int php_select(int max_fd, fd_set *rfds, fd_set *wfds, fd_set *efds, stru
        /* build an array of handles for non-sockets */
        for (i = 0; i < max_fd; i++) {
                if (SAFE_FD_ISSET(i, rfds) || SAFE_FD_ISSET(i, wfds) || SAFE_FD_ISSET(i, efds)) {
-                       handles[n_handles] = (HANDLE)_get_osfhandle(i);
-                       if ((DWORD)handles[n_handles] == 0xffffffff) {
+                       handles[n_handles] = (HANDLE)(zend_uintptr_t)_get_osfhandle(i);
+                       if (handles[n_handles] == INVALID_HANDLE_VALUE) {
                                /* socket */
                                if (SAFE_FD_ISSET(i, rfds)) {
                                        FD_SET((uint)i, &sock_read);