Changes between Initial Version and Version 1 of Ticket #830
- Timestamp:
- 05/15/12 18:28:17 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #830 – Description
initial v1 1 1 Calling the managed interface function "Disposable::GetHashCode()" can result in an overflow exception if the internal pointer is larger than Int32. 2 2 3 svn diff ...\Fdo\Managed\Src\OSGeo\Runtime\Disposable.cpp3 svn diff Disposable.cpp 4 4 5 6 {{{ 5 7 System::Int32 NAMESPACE_OSGEO_RUNTIME::Disposable::GetHashCode() 6 8 { … … 12 14 + return ((System::Int32)(i64) ^ (System::Int32)(i64 >> 32)); 13 15 } 14 16 }}}