Changes between Initial Version and Version 4 of Ticket #1427


Ignore:
Timestamp:
Apr 2, 2007, 8:19:27 PM (17 years ago)
Author:
warmerdam
Comment:

Dan,

Did you ever get a chance to retest this?

I'd like to close this report if the issue is gone.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1427

    • Property Priority highestnormal
    • Property Milestone1.4.2
    • Property Severity normalmajor
  • Ticket #1427 – Description

    initial v4  
    1 {{{
    21I'm reporting a bug in the NITF driver.  The 2007-01-07 snapshot of nitfmage.c, line 596 needs to be removed.
    32
    43As can be seen in this snippet, the nOffset += 20 causes the NITFImageAccess function to be 20 bytes off from this point. the nIDLVL field should be 2 bytes after NBPP.
    5 
    6 <snip>
     4{{{
    75      psImage->nBitsPerSample =
    86            atoi(NITFGetField(szTemp, pachHeader, nOffset+18, 2));
     
    1412
    1513        psImage->nIDLVL = atoi(NITFGetField(szTemp,pachHeader, nOffset+20, 3));
    16   </snip>
    1714}}}