Changes between Version 1 and Version 2 of Ticket #970
- Timestamp:
- Apr 8, 2007, 2:07:49 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #970 – Description
v1 v2 1 {{{2 1 From Carlos A. Rueda <carueda@ucdavis.edu> 3 2 … … 7 6 Below is a small program that demonstrates the problem: 8 7 8 {{{ 9 9 $ g++ -Wall wktcoordbug.cc -lgdal 10 10 $ ./a.out … … 15 15 -179769313486231570814527423731704356798070567525844996598917476803157260780028538760589558632766878171540458953514382464234321326889464182768467546703537516986049910576551282076245490090389328944075868508455133942304583236903222948165808559332123348274797826204144723168738177180919299881250404026184124858368.000000000000000 16 16 Segmentation fault 17 }}} 17 18 18 19 Note: I made the test on a liitle-endian machine. 19 20 20 Best regards, 21 22 carlos 23 24 21 {{{ 25 22 ///////////////// wktcoordbug.cc /////////////////////// 26 23 // OGRMakeWktCoordinate bug … … 52 49 } 53 50 }}} 51 52 Carlos