You are here

private function Decoder::verifySize in Smart IP 7.2

Same name and namespace in other branches
  1. 6.2 includes/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Decoder.php \MaxMind\Db\Reader\Decoder::verifySize()
1 call to Decoder::verifySize()
Decoder::decodeByType in includes/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Decoder.php

File

includes/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Decoder.php, line 140

Class

Decoder

Namespace

MaxMind\Db\Reader

Code

private function verifySize($expected, $actual) {
  if ($expected != $actual) {
    throw new InvalidDatabaseException("The MaxMind DB file's data section contains bad data (unknown data type or corrupt data)");
  }
}