htdocs/modules/system/class/thumbs/phpthumb.gif.php 2 locations
|
@@ 233-236 (lines=4) @@
|
| 230 |
|
$this->Vals[$i] = $i; |
| 231 |
|
} |
| 232 |
|
|
| 233 |
|
for (; $i < (1 << $this->MAX_LZW_BITS); $i++) { |
| 234 |
|
$this->Next[$i] = 0; |
| 235 |
|
$this->Vals[$i] = 0; |
| 236 |
|
} |
| 237 |
|
|
| 238 |
|
$this->sp = 0; |
| 239 |
|
return 1; |
|
@@ 265-268 (lines=4) @@
|
| 262 |
|
$this->Vals[$i] = $i; |
| 263 |
|
} |
| 264 |
|
|
| 265 |
|
for (; $i < (1 << $this->MAX_LZW_BITS); $i++) { |
| 266 |
|
$this->Next[$i] = 0; |
| 267 |
|
$this->Vals[$i] = 0; |
| 268 |
|
} |
| 269 |
|
|
| 270 |
|
$this->CodeSize = $this->SetCodeSize + 1; |
| 271 |
|
$this->MaxCodeSize = $this->ClearCode << 1; |