Commit 82135021 authored by Zardosht Kasheff's avatar Zardosht Kasheff Committed by Yoni Fogel

addresses #1282

initialize variables

git-svn-id: file:///svn/mysql/tokudb-engine/src@7990 c7de825b-a66e-492c-adef-691d508d4ae1
parent 23480a9a
......@@ -529,8 +529,8 @@ static void smart_dbt_callback_ror_heavi(DBT const *key, DBT const *row, void *
ulonglong retrieve_auto_increment(uint16 type, uint32 offset,const uchar *record)
{
const uchar *key; /* Key */
ulonglong unsigned_autoinc; /* Unsigned auto-increment */
longlong signed_autoinc; /* Signed auto-increment */
ulonglong unsigned_autoinc = 0; /* Unsigned auto-increment */
longlong signed_autoinc = 0; /* Signed auto-increment */
enum { unsigned_type, signed_type } autoinc_type;
float float_tmp; /* Temporary variable */
double double_tmp; /* Temporary variable */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment