Opened 20 years ago

Closed 19 years ago

#722 closed defect (fixed)

DITHER Processing Option broken on win32

Reported by: warmerdam Owned by: warmerdam
Priority: high Milestone: 4.4 release
Component: GDAL Support Version: 4.2
Severity: normal Keywords:
Cc:

Description

The PROCESSING "DITHER=YES" option is broken in 4.2 (and 4.3) due to the use
of "sprintf( szDataPointer, "%p", pabyRed );" to encode pointers.  This 
encoding does not currently work on win32.  It can fixed by changing
the encoding to "sprintf( szDataPointer, "%ld", (long) pabyRead );" but that
might not work on other platforms. 

Need to fix properly.

Change History (2)

comment:1 by fwarmerdam, 20 years ago

Milestone: 4.4 release
Status: newassigned
I need to fix this for the 4.4 release.  Set target milestone to 4.4. 

comment:2 by fwarmerdam, 19 years ago

Resolution: fixed
Status: assignedclosed
This was fixed in time for the 4.4 release.

Note: See TracTickets for help on using tickets.