Commit ebc6fc7f authored by Olivier Bertrand's avatar Olivier Bertrand

- Bug: When trace is ON the variable c was used uninitialized in CSORT::Istc

modified:
  storage/connect/csort.cpp
parent 96f55d46
......@@ -903,7 +903,7 @@ void CSORT::Qstc(int *base, int *max)
/***********************************************************************/
void CSORT::Istc(int *base, int *hi, int *max)
{
register int c;
register int c = 0;
register int *lo;
register int *i, *j;
......
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