Crypt/Base: fix PHP 8.2 deprecation error

This commit is contained in:
terrafrost 2022-07-31 19:29:31 -05:00
parent 2d6713cd54
commit a44b56d4b5

View File

@ -1152,7 +1152,7 @@ class Crypt_Base
$plaintext = '';
if ($this->continuousBuffer) {
$iv = &$this->decryptIV;
$pos = &$this->buffer['pos'];
$pos = &$this->debuffer['pos'];
} else {
$iv = $this->decryptIV;
$pos = 0;