diff options
author | unknown <joerg@mysql.com> | 2005-03-31 21:44:48 +0200 |
---|---|---|
committer | unknown <joerg@mysql.com> | 2005-03-31 21:44:48 +0200 |
commit | c750c41855574bd3fedfcd90150bfdb303d79942 (patch) | |
tree | c1f573e00ea9e178f846b50efe7e130d3f78a84c /sql | |
parent | 896e6e5653318d809881b154762e656089ea5792 (diff) | |
download | mariadb-git-c750c41855574bd3fedfcd90150bfdb303d79942.tar.gz |
uninit variable fixed
Originally contained in 2005/03/03 21:13:33+01:00 serg@serg.mylan;
contained in MySQL 4.1.10a;
re-committed for archival purposes.
sql/ha_myisam.cc:
uninit variable fixed
Diffstat (limited to 'sql')
-rw-r--r-- | sql/ha_myisam.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/ha_myisam.cc b/sql/ha_myisam.cc index 58fd67ddfa3..7ddb7ca25ed 100644 --- a/sql/ha_myisam.cc +++ b/sql/ha_myisam.cc @@ -1334,7 +1334,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]; |