Commit 1c9178c1 authored by unknown's avatar unknown

ndb dd -

  fix uninit variable in lgman


storage/ndb/src/kernel/blocks/lgman.cpp:
  fix uninit variable
parent c769183b
...@@ -823,7 +823,9 @@ Lgman::Logfile_group::Logfile_group(const CreateFilegroupImplReq* req) ...@@ -823,7 +823,9 @@ Lgman::Logfile_group::Logfile_group(const CreateFilegroupImplReq* req)
m_logfile_group_id = req->filegroup_id; m_logfile_group_id = req->filegroup_id;
m_version = req->filegroup_version; m_version = req->filegroup_version;
m_state = LG_ONLINE; m_state = LG_ONLINE;
m_outstanding_fs = 0;
m_next_reply_ptr_i = RNIL;
m_last_lsn = 0; m_last_lsn = 0;
m_last_synced_lsn = 0; m_last_synced_lsn = 0;
m_last_sync_req_lsn = 0; m_last_sync_req_lsn = 0;
......
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