diff options
author | Lior Kaplan <kaplanlior@gmail.com> | 2015-04-01 18:30:55 +0300 |
---|---|---|
committer | Lior Kaplan <kaplanlior@gmail.com> | 2015-04-01 18:30:55 +0300 |
commit | 3b8b1435ad832e162a2a3a2009a548e833ebb99a (patch) | |
tree | cf0c471ebc65ad89bf14c7d643d3bc70b47a6d8b | |
parent | 780a8123fe11ef255b264b18b3482cc1a0810d61 (diff) | |
parent | 3409d87eab47980246ddd9969cd2a61a2edacafb (diff) | |
download | php-git-3b8b1435ad832e162a2a3a2009a548e833ebb99a.tar.gz |
Merge branch 'PHP-5.6'
* PHP-5.6:
Fix typo: unitialized -> uninitialized
Fix typo: unitialized -> uninitialized
Conflicts:
ext/xmlwriter/php_xmlwriter.c
-rw-r--r-- | ext/exif/tests/bug68799.phpt | 2 | ||||
-rw-r--r-- | ext/pcre/pcrelib/pcre_exec.c | 2 | ||||
-rw-r--r-- | ext/xmlwriter/php_xmlwriter.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/ext/exif/tests/bug68799.phpt b/ext/exif/tests/bug68799.phpt index b09f21ca7b..f50a41b402 100644 --- a/ext/exif/tests/bug68799.phpt +++ b/ext/exif/tests/bug68799.phpt @@ -1,5 +1,5 @@ --TEST-- -Bug #68799 (Free called on unitialized pointer) +Bug #68799 (Free called on uninitialized pointer) --SKIPIF-- <?php if (!extension_loaded('exif')) print 'skip exif extension not available';?> --FILE-- diff --git a/ext/pcre/pcrelib/pcre_exec.c b/ext/pcre/pcrelib/pcre_exec.c index 82b79af8c5..35b694e5ff 100644 --- a/ext/pcre/pcrelib/pcre_exec.c +++ b/ext/pcre/pcrelib/pcre_exec.c @@ -686,7 +686,7 @@ the alternative names that are used. */ #define foc number #define save_mark data -/* These statements are here to stop the compiler complaining about unitialized +/* These statements are here to stop the compiler complaining about uninitialized variables. */ #ifdef SUPPORT_UCP diff --git a/ext/xmlwriter/php_xmlwriter.c b/ext/xmlwriter/php_xmlwriter.c index 122ed0c31e..3cab7a1458 100644 --- a/ext/xmlwriter/php_xmlwriter.c +++ b/ext/xmlwriter/php_xmlwriter.c @@ -112,7 +112,7 @@ static void xmlwriter_free_resource_ptr(xmlwriter_object *intern) ze_xmlwriter_object *obj = Z_XMLWRITER_P(object); \ intern = obj->xmlwriter_ptr; \ if (!intern) { \ - php_error_docref(NULL, E_WARNING, "Invalid or unitialized XMLWriter object"); \ + php_error_docref(NULL, E_WARNING, "Invalid or uninitialized XMLWriter object"); \ RETURN_FALSE; \ } \ } |