From f49cf0f229f5050cdfae84956f091e82f08ec59c Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 3 Mar 2005 21:13:33 +0100 Subject: [PATCH] uninit variable fixed --- sql/ha_myisam.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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];