diff options
author | George Wang <gwang@php.net> | 2014-09-03 11:28:30 -0400 |
---|---|---|
committer | George Wang <gwang@php.net> | 2014-09-03 11:28:30 -0400 |
commit | b16929ca7294fb047e63eb6c04d715d980a50c47 (patch) | |
tree | e8ccc6acd38dbf670380cccc500100279d74f53d /ext/spl/php_spl.c | |
parent | bba16dde5ded45802543712bb3b9fe6e93b10751 (diff) | |
parent | 9266227402f50e1ad9953952b68a5ff3a25806b0 (diff) | |
download | php-git-b16929ca7294fb047e63eb6c04d715d980a50c47.tar.gz |
Merge branch 'PHP-5.5' of git.php.net:php-src into PHP-5.5
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..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 intialzed, 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); |