diff options
author | monty@mysql.com <> | 2004-03-16 00:42:10 +0200 |
---|---|---|
committer | monty@mysql.com <> | 2004-03-16 00:42:10 +0200 |
commit | a6ba9f3cbc382647cae3f62b11ba84bb7bc295ae (patch) | |
tree | 4fb956f41d3d1d9d7e092a6304f23aeafada895f /sql/spatial.h | |
parent | 56af3931e0e7352f6fa8a130f51a5301fb6eb0ce (diff) | |
download | mariadb-git-a6ba9f3cbc382647cae3f62b11ba84bb7bc295ae.tar.gz |
Fixed memory overrun in spatial init code
Diffstat (limited to 'sql/spatial.h')
-rw-r--r-- | sql/spatial.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/spatial.h b/sql/spatial.h index 26396dd0f90..213bbbf6323 100644 --- a/sql/spatial.h +++ b/sql/spatial.h @@ -251,7 +251,7 @@ public: } bool envelope(String *result) const; - static Geometry::Class_info *ci_collection[Geometry::wkb_end]; + static Geometry::Class_info *ci_collection[Geometry::wkb_end+1]; protected: static Class_info *find_class(int type_id) |