1
0
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:
Antony Dovgal
2006-01-16 23:03:41 +00:00
parent 38b7befa2e
commit f0a32f0127
+1 -1
View File
@@ -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++) {