Commit 59cbec3d authored by unknown's avatar unknown
Browse files

NdbOperationSearch.cpp:

  fix C coding error found by tomas on sol9x86


ndb/src/ndbapi/NdbOperationSearch.cpp:
  fix C coding error found by tomas on sol9x86
parent 6875cf36
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -543,7 +543,8 @@ NdbOperation::getKeyFromTCREQ(Uint32* data, unsigned size)
  assert(m_accessTable->m_sizeOfKeysInWords == size);
  unsigned pos = 0;
  while (pos < 8 && pos < size) {
    data[pos++] = theKEYINFOptr[pos];
    data[pos] = theKEYINFOptr[pos];
    pos++;
  }
  NdbApiSignal* tSignal = theFirstKEYINFO;
  unsigned n = 0;