Fixes on ParseNull

This commit is contained in:
2016-06-18 01:25:27 +02:00
parent 1dcf5f6f4c
commit c9370080b1

View File

@@ -309,9 +309,9 @@ namespace VAR.PdfTools
{
if (
PeekNextChar(0) == 'n' &&
PeekNextChar(0) == 'u' &&
PeekNextChar(0) == 'l' &&
PeekNextChar(0) == 'l'
PeekNextChar(1) == 'u' &&
PeekNextChar(2) == 'l' &&
PeekNextChar(3) == 'l'
)
{
NextChar();