diff options
author | Lior Kaplan <kaplanlior@gmail.com> | 2014-08-17 15:48:22 +0300 |
---|---|---|
committer | Lior Kaplan <kaplanlior@gmail.com> | 2014-08-17 15:48:22 +0300 |
commit | be2128c8050fd8d22604acb0e225891551c81c8c (patch) | |
tree | a762e220562999130449272443fe9cde49ce9957 /ext/spl/php_spl.c | |
parent | 6279246d2c60437c583f9c273075579bf17be654 (diff) | |
parent | 3f42f2f5d1c8026b6e1d21b91857a08d918c28c8 (diff) | |
download | php-git-be2128c8050fd8d22604acb0e225891551c81c8c.tar.gz |
Merge branch 'PHP-5.4' into PHP-5.5
* PHP-5.4:
typofixes
Diffstat (limited to 'ext/spl/php_spl.c')
-rw-r--r-- | ext/spl/php_spl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/spl/php_spl.c b/ext/spl/php_spl.c index 5927e05562..3e7106ed25 100644 --- a/ext/spl/php_spl.c +++ b/ext/spl/php_spl.c @@ -326,7 +326,7 @@ PHP_FUNCTION(spl_autoload) RETURN_FALSE; } - if (file_exts == NULL) { /* autoload_extensions is not intialzed, set to defaults */ + if (file_exts == NULL) { /* autoload_extensions is not initialzed, set to defaults */ copy = pos1 = estrndup(SPL_DEFAULT_FILE_EXTENSIONS, sizeof(SPL_DEFAULT_FILE_EXTENSIONS)-1); } else { copy = pos1 = estrndup(file_exts, file_exts_len); |