PostGIS 1.0.3
????/??/??
+ - Bugfix in dumper on 64bit machines
- Bugfix in dumper handling of user-defined queries
- Bugfix in create_undef.pl script
- Small performance improvement in canonical input function
}
uint32 popint(byte **c) {
- uint32 i;
+ uint32 i=0;
memcpy(&i, *c, 4);
*c+=4;
return i;
}
uint32 getint(byte *c) {
- uint32 i;
+ uint32 i=0;
memcpy(&i, c, 4);
return i;
}
}
double popdouble(byte **c) {
- double d;
+ double d=0.0;
memcpy(&d, *c, 8);
*c+=8;
return d;
/**********************************************************************
* $Log$
+ * Revision 1.78 2005/07/22 19:15:28 strk
+ * Fixed bug in {get,pop}{int,double} for 64bit archs
+ *
* Revision 1.77 2005/07/12 16:19:35 strk
* Fixed bug in user query handling, reported by Andrew Seales
*