Fix continue <-> break
This commit is contained in:
@ -898,7 +898,7 @@ abstract class Zend_Pdf_FileParser_Font_OpenType extends Zend_Pdf_FileParser_Fon
|
|||||||
if ($language != 0) {
|
if ($language != 0) {
|
||||||
$this->_debugLog('Type 0 cmap tables must be language-independent;'
|
$this->_debugLog('Type 0 cmap tables must be language-independent;'
|
||||||
. ' language: %d; skipping', $language);
|
. ' language: %d; skipping', $language);
|
||||||
continue;
|
continue 2;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@ -917,7 +917,7 @@ abstract class Zend_Pdf_FileParser_Font_OpenType extends Zend_Pdf_FileParser_Fon
|
|||||||
case 0xa: // break intentionally omitted
|
case 0xa: // break intentionally omitted
|
||||||
case 0xc:
|
case 0xc:
|
||||||
$this->_debugLog('Format: 0x%x currently unsupported; skipping', $format);
|
$this->_debugLog('Format: 0x%x currently unsupported; skipping', $format);
|
||||||
continue;
|
continue 2;
|
||||||
//$this->skipBytes(2);
|
//$this->skipBytes(2);
|
||||||
//$cmapLength = $this->readUInt(4);
|
//$cmapLength = $this->readUInt(4);
|
||||||
//$language = $this->readUInt(4);
|
//$language = $this->readUInt(4);
|
||||||
@ -929,7 +929,7 @@ abstract class Zend_Pdf_FileParser_Font_OpenType extends Zend_Pdf_FileParser_Fon
|
|||||||
|
|
||||||
default:
|
default:
|
||||||
$this->_debugLog('Unknown subtable format: 0x%x; skipping', $format);
|
$this->_debugLog('Unknown subtable format: 0x%x; skipping', $format);
|
||||||
continue;
|
continue 2;
|
||||||
}
|
}
|
||||||
$cmapType = $format;
|
$cmapType = $format;
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user