Skip to content

Commit 59c2a55

Browse files
committed
Fix typo: unitialized -> uninitialized
1 parent a32c8ba commit 59c2a55

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

NEWS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ PHP NEWS
256256
CURLOPT_RETURNTRANSFER isn't set). (Jille Timmermans)
257257

258258
- EXIF:
259-
. Fixed bug #68799 (Free called on unitialized pointer). (CVE-2015-0232)
259+
. Fixed bug #68799 (Free called on uninitialized pointer). (CVE-2015-0232)
260260
(Stas)
261261

262262
- Fileinfo:

ext/exif/tests/bug68799.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Bug #68799 (Free called on unitialized pointer)
2+
Bug #68799 (Free called on uninitialized pointer)
33
--SKIPIF--
44
<?php if (!extension_loaded('exif')) print 'skip exif extension not available';?>
55
--FILE--

ext/pcre/pcrelib/pcre_exec.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -688,7 +688,7 @@ the alternative names that are used. */
688688
#define foc number
689689
#define save_mark data
690690

691-
/* These statements are here to stop the compiler complaining about unitialized
691+
/* These statements are here to stop the compiler complaining about uninitialized
692692
variables. */
693693

694694
#ifdef SUPPORT_UCP

ext/xmlwriter/php_xmlwriter.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ static void xmlwriter_free_resource_ptr(xmlwriter_object *intern TSRMLS_DC)
113113
ze_xmlwriter_object *obj = (ze_xmlwriter_object*) zend_object_store_get_object(object TSRMLS_CC); \
114114
intern = obj->xmlwriter_ptr; \
115115
if (!intern) { \
116-
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid or unitialized XMLWriter object"); \
116+
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid or uninitialized XMLWriter object"); \
117117
RETURN_FALSE; \
118118
} \
119119
}

ext/zip/php_zip.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ static int php_zip_parse_options(zval *options, long *remove_all_path,
417417
ze_zip_object *obj = (ze_zip_object*) zend_object_store_get_object(object TSRMLS_CC); \
418418
intern = obj->za; \
419419
if (!intern) { \
420-
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid or unitialized Zip object"); \
420+
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid or uninitialized Zip object"); \
421421
RETURN_FALSE; \
422422
} \
423423
}

0 commit comments

Comments
 (0)