Re: [iText-questions] BUG in CMapParser

2009-05-30 Thread 1T3XT info
Gregor Kofler wrote: > Hi, > > i think there is a bug in CMapParser.java see at the following Code: > 381 while( nextByte != -1 && nextByte != 0x0D && nextByte != 0x0D ) > Should be changed to: > 381 while( nextByte != -1 && nextByte != 0x0D && nextByte != 0x0A ) Thanks, the c

[iText-questions] BUG in CMapParser

2009-05-28 Thread Gregor Kofler
Hi, i think there is a bug in CMapParser.java see at the following Code: private void readUntilEndOfLine( InputStream is, StringBuffer buf ) throws IOException 379 { 380 int nextByte = is.read(); 381 while( nextByte != -1 && nextByte != 0x0D && nextByte != 0x0D ) 382