mirror of
https://github.com/php/php-src.git
synced 2026-04-25 00:48:25 +02:00
fix #36038 (ext/hash compile failure on Mac OSX)
This commit is contained in:
+1
-1
@@ -122,7 +122,7 @@ PHP_HASH_API void php_hash_register_algo(const char *algo, php_hash_ops *ops);
|
||||
|
||||
static inline void php_hash_bin2hex(char *out, const unsigned char *in, int in_len)
|
||||
{
|
||||
static const char hexits[16] = "0123456789abcdef";
|
||||
static const char hexits[17] = "0123456789abcdef";
|
||||
int i;
|
||||
|
||||
for(i = 0; i < in_len; i++) {
|
||||
|
||||
Reference in New Issue
Block a user