diff options
author | Lior Kaplan <kaplanlior@gmail.com> | 2014-08-17 21:34:03 +0300 |
---|---|---|
committer | Lior Kaplan <kaplanlior@gmail.com> | 2014-08-17 21:34:03 +0300 |
commit | f1d0e50ea8915a18ab5bf24402b787c35552e162 (patch) | |
tree | 3a009414fc2fa71144e861a69a3b2b777f3cbfc8 /ext/spl/php_spl.c | |
parent | 56d02d564e946a03e397297d5d5ded112eefd928 (diff) | |
parent | fac08a960be6124829177f6c33c2b10aa3fd81b9 (diff) | |
download | php-git-f1d0e50ea8915a18ab5bf24402b787c35552e162.tar.gz |
Merge branch 'PHP-5.5' into PHP-5.6
* PHP-5.5:
Correct typo in comments: 'initialized'
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 3e7106ed25..44611e6158 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 initialzed, set to defaults */ + if (file_exts == NULL) { /* autoload_extensions is not initialized, 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); |