Ticket #1659 (closed defect: fixed)
Fix in 8211
| Reported by: | caribou | Owned by: | warmerdam |
|---|---|---|---|
| Priority: | normal | Milestone: | 1.4.2 |
| Component: | default | Version: | 1.4.1 |
| Severity: | normal | Keywords: | |
| Cc: |
Description
There's a bug in gdal/frmts/iso8211/ddfrecord.cpp probably due to changes. Somebody forgot to take out a ftell and fseek. I would replace :
486 long pos = ftell(fp) - rewindSize;
487 fseek(fp, pos, SEEK_SET);
by:
VSIFSeekL(fp, -rewindSize, SEEK_CUR);
http://trac.osgeo.org/gdal/browser/trunk/gdal/frmts/iso8211/ddfrecord.cpp#L486
Change History
Note: See
TracTickets for help on using
tickets.
