1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +03:00

Fixed memory overrun in spatial init code

sql/spatial.cc:
  Fixed memory overrun
sql/spatial.h:
  Fixed memory overrun
This commit is contained in:
unknown
2004-03-16 00:42:10 +02:00
parent 0dbf737aa2
commit 0952bf2da5
2 changed files with 2 additions and 2 deletions

View File

@@ -19,7 +19,7 @@
/***************************** Gis_class_info *******************************/
Geometry::Class_info *Geometry::ci_collection[Geometry::wkb_end]=
Geometry::Class_info *Geometry::ci_collection[Geometry::wkb_end+1]=
{
NULL, NULL, NULL, NULL, NULL, NULL, NULL
};