Commit 16de3511 authored by Olivier Bertrand's avatar Olivier Bertrand

- Avoid uninitialised warning from valgrind

modified:
  storage/connect/tabdos.cpp
parent 86a33431
......@@ -842,6 +842,8 @@ bool TDBDOS::SaveBlockValues(PGLOBAL g)
return true;
} // endif opfile
memset(n, 0, sizeof(n)); // To avoid valgrind warning
if (Ftype == RECFM_VAR || defp->Compressed == 2) {
/*******************************************************************/
/* Write block starting positions into the opt file. */
......
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