summaryrefslogtreecommitdiff
path: root/ext/spl/php_spl.c
diff options
context:
space:
mode:
authorLior Kaplan <kaplanlior@gmail.com>2014-08-17 15:48:22 +0300
committerLior Kaplan <kaplanlior@gmail.com>2014-08-17 15:48:22 +0300
commitbe2128c8050fd8d22604acb0e225891551c81c8c (patch)
treea762e220562999130449272443fe9cde49ce9957 /ext/spl/php_spl.c
parent6279246d2c60437c583f9c273075579bf17be654 (diff)
parent3f42f2f5d1c8026b6e1d21b91857a08d918c28c8 (diff)
downloadphp-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.c2
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);