mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00
Fixed bug #47969 (ezmlm_hash() returns different values depend on OS)
This commit is contained in:
parent
dd5189e9bd
commit
28db7c0207
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ extern long php_getuid(void);
|
|||
PHP_FUNCTION(ezmlm_hash)
|
||||
{
|
||||
char *str = NULL;
|
||||
unsigned long h = 5381L;
|
||||
unsigned int h = 5381;
|
||||
int j, str_len;
|
||||
|
||||
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &str, &str_len) == FAILURE) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue