Project

General

Profile

Actions

Bug #23036

closed

Read of uninitialized variable in t3lib_div::normalizeIPv6

Added by Oliver Klee almost 14 years ago. Updated over 5 years ago.

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)


Related issues 1 (0 open1 closed)

Related to TYPO3 Core - Bug #23593: Set readLLPHPfile to deprecated, resolve undefined vars in t3lib_divClosed2010-09-24

Actions
Actions #1

Updated by Mr. Hudson almost 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

Actions #2

Updated by Mr. Hudson almost 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

Actions #3

Updated by Stefan Neufeind almost 13 years ago

  • Status changed from New to Resolved
  • % Done changed from 0 to 100
Actions #4

Updated by Benni Mack over 5 years ago

  • Status changed from Resolved to Closed
Actions

Also available in: Atom PDF