diff options
author | Lior Kaplan <kaplanlior@gmail.com> | 2014-08-17 21:33:41 +0300 |
---|---|---|
committer | Lior Kaplan <kaplanlior@gmail.com> | 2014-08-17 21:33:41 +0300 |
commit | fac08a960be6124829177f6c33c2b10aa3fd81b9 (patch) | |
tree | c4633350d8e38e3e6b54c3b1d09af04058b253b9 /ext/spl/php_spl.c | |
parent | be2128c8050fd8d22604acb0e225891551c81c8c (diff) | |
parent | 1504f7d630c01fcfe9cd23b9e8aff7195a3864f7 (diff) | |
download | php-git-fac08a960be6124829177f6c33c2b10aa3fd81b9.tar.gz |
Merge branch 'PHP-5.4' into PHP-5.5
* PHP-5.4:
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); |