Commit 2d0fd874 authored by unknown's avatar unknown

Fix uninit var.

Fix error printout


ndb/src/kernel/blocks/dbtc/Dbtc.hpp:
  Fix init scan frag record
ndb/src/mgmsrv/main.cpp:
  Fix error printout
parent a28e734f
...@@ -998,7 +998,12 @@ public: ...@@ -998,7 +998,12 @@ public:
* It will receive max 16 tuples in each request * It will receive max 16 tuples in each request
*/ */
struct ScanFragRec { struct ScanFragRec {
ScanFragRec(){} ScanFragRec(){
stopFragTimer();
lqhBlockref = 0;
scanFragState = IDLE;
scanRec = RNIL;
}
/** /**
* ScanFragState * ScanFragState
* WAIT_GET_PRIMCONF : Waiting for DIGETPRIMCONF when starting a new * WAIT_GET_PRIMCONF : Waiting for DIGETPRIMCONF when starting a new
......
...@@ -187,7 +187,7 @@ NDB_MAIN(mgmsrv){ ...@@ -187,7 +187,7 @@ NDB_MAIN(mgmsrv){
"Please check if the port is already used,\n" "Please check if the port is already used,\n"
"(perhaps a mgmtsrvr is already running),\n" "(perhaps a mgmtsrvr is already running),\n"
"and if you are executing on the correct computer", "and if you are executing on the correct computer",
glob.interface_name, glob.port); (glob.interface_name ? glob.interface_name : "*"), glob.port);
goto error_end; goto error_end;
} }
free(glob.interface_name); free(glob.interface_name);
......
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