Actions
Bug #23036
closedRead of uninitialized variable in t3lib_div::normalizeIPv6
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2010-06-29
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
4.4
PHP Version:
5.2
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
$h is read before it is initialized:
public static function normalizeIPv6($address) {
$normalizedAddress = '';
$stageOneAddress = '';
$chunks = explode('::', $address); // Count 2 if if address has hidden zero blocks
if (count($chunks)==2) {
$chunksLeft = explode(':', $chunks[0]);
$chunksRight = explode(':', $chunks[1]);
$left = count($chunksLeft);
$right = count($chunksRight);
// Special case: leading zero-only blocks count to 1, should be 0
if ($left==1 && strlen($chunksLeft[0])==0) $left=0;
$hiddenBlocks = 8 - ($left + $right);
$hiddenPart = '';
while ($h<$hiddenBlocks) {
$hiddenPart .= '0000:';
$h++;
}
(issue imported from #M14915)
Updated by Mr. Hudson over 13 years ago
Patch set 1 of change Ib22e3f5b1093a5c38dde2bd6bd8b31a0049fd796 has been pushed to the review server.
It is available at http://review.typo3.org/2520
Updated by Mr. Hudson over 13 years ago
Patch set 2 of change Ib22e3f5b1093a5c38dde2bd6bd8b31a0049fd796 has been pushed to the review server.
It is available at http://review.typo3.org/2520
Updated by Stefan Neufeind over 13 years ago
- Status changed from New to Resolved
- % Done changed from 0 to 100
Applied in changeset 5b0ec0d0719772d191852db2e3d69629426b131a.
Actions