Skip to content
Snippets Groups Projects
Commit 46b5ff23 authored by Ruud Overeem's avatar Ruud Overeem
Browse files

Bug 1000: Solved bug in pointer admin.

parent 65d28075
No related branches found
No related tags found
No related merge requests found
......@@ -153,6 +153,7 @@ void CEPlogProcessor::handleDataStream(int sid)
LOG_DEBUG("Reset of read/write pointers");
stream.inPtr = 0;
stream.outPtr = 0;
itsLogStreams[sid] = stream; // copy changes back to admin
return;
}
}
......@@ -164,6 +165,8 @@ void CEPlogProcessor::handleDataStream(int sid)
stream.inPtr -= stream.outPtr;
stream.outPtr = 0;
}
itsLogStreams[sid] = stream; // copy changes back to admin
}
} // namespace APL
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment