summaryrefslogtreecommitdiff
path: root/sql/ha_myisam.cc
diff options
context:
space:
mode:
authorunknown <serg@serg.mylan>2005-03-03 21:13:33 +0100
committerunknown <serg@serg.mylan>2005-03-03 21:13:33 +0100
commitf49cf0f229f5050cdfae84956f091e82f08ec59c (patch)
tree42f0d092be1355c29abc18d98da4719739263fdf /sql/ha_myisam.cc
parent8104faa08305df5cbc848fe593444d2716ba49eb (diff)
downloadmariadb-git-f49cf0f229f5050cdfae84956f091e82f08ec59c.tar.gz
uninit variable fixed
Diffstat (limited to 'sql/ha_myisam.cc')
-rw-r--r--sql/ha_myisam.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/ha_myisam.cc b/sql/ha_myisam.cc
index cf2d8e32e0a..63a5508872e 100644
--- a/sql/ha_myisam.cc
+++ b/sql/ha_myisam.cc
@@ -1052,7 +1052,7 @@ int ha_myisam::create(const char *name, register TABLE *table_arg,
HA_CREATE_INFO *info)
{
int error;
- uint i,j,recpos,minpos,fieldpos,temp_length,length, create_flags;
+ uint i,j,recpos,minpos,fieldpos,temp_length,length, create_flags= 0;
bool found_real_auto_increment=0;
enum ha_base_keytype type;
char buff[FN_REFLEN];