id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
3329,[VFK - Patch] Patch to be more robust against corrupted data,rouault,martinl,"Martin,

I've attached to this ticket a patch that add more checks when parsing the text read from VFK file, to be more robust against corrupt or hostile files. It works on the autotest sample but I let you test more and apply if you confirm it doesn't break things with more complex data you might have. Note it also fixes a logical error to detect end-of-line : 

{{{
*poChar != '\r' && *(poChar+1) != '\n'
}}}

should be :

{{{
!(*poChar == '\r' && *(poChar+1) == '\n')
}}}

",defect,closed,normal,1.7.0,OGR_SF,svn-trunk,normal,fixed,VFK,
