diff --git a/library/ZendPdf/BinaryParser/Font/OpenType/AbstractOpenType.php b/library/ZendPdf/BinaryParser/Font/OpenType/AbstractOpenType.php index 2e3d43b..82214df 100644 --- a/library/ZendPdf/BinaryParser/Font/OpenType/AbstractOpenType.php +++ b/library/ZendPdf/BinaryParser/Font/OpenType/AbstractOpenType.php @@ -858,7 +858,7 @@ protected function _parseCMapTable() if ($language != 0) { $this->_debugLog('Type 0 cmap tables must be language-independent;' . ' language: %d; skipping', $language); - continue; + continue 2; } break; @@ -877,7 +877,7 @@ protected function _parseCMapTable() case 0xa: // break intentionally omitted case 0xc: $this->_debugLog('Format: 0x%x currently unsupported; skipping', $format); - continue; + continue 2; //$this->skipBytes(2); //$cmapLength = $this->readUInt(4); //$language = $this->readUInt(4); @@ -889,7 +889,7 @@ protected function _parseCMapTable() default: $this->_debugLog('Unknown subtable format: 0x%x; skipping', $format); - continue; + continue 2; } $cmapType = $format; break;