Skip to content

Commit

Permalink
Merge branch 'PHP-5.6'
Browse files Browse the repository at this point in the history
* PHP-5.6:
  Fix typo: unitialized -> uninitialized
  Fix typo: unitialized -> uninitialized

Conflicts:
	ext/xmlwriter/php_xmlwriter.c
  • Loading branch information
kaplanlior committed Apr 1, 2015
2 parents 780a812 + 3409d87 commit 3b8b143
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ext/exif/tests/bug68799.phpt
Original file line number Diff line number Diff line change
@@ -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--
Expand Down
2 changes: 1 addition & 1 deletion ext/pcre/pcrelib/pcre_exec.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion ext/xmlwriter/php_xmlwriter.c
Original file line number Diff line number Diff line change
Expand Up @@ -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; \
} \
}
Expand Down

0 comments on commit 3b8b143

Please sign in to comment.