Skip to content

Commit

Permalink
one more fix for CORE-1680
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexPeshkoff committed Mar 3, 2008
1 parent 0e5be5b commit 7137e23
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/utilities/gsec/call_service.cpp
Expand Up @@ -559,14 +559,15 @@ static int typeBuffer(ISC_STATUS* status, char* buf, int offset,
// Old data left - use them
if (offset)
{
memmove(&buf[offset], p, loop);
memmove(&buf[offset], p, loop + 1);
p = buf;
loop += offset;
offset = 0;
}

while (*p != isc_info_end)
{
fb_assert(p[loop] == isc_info_end);
try
{
switch (*p++)
Expand Down

0 comments on commit 7137e23

Please sign in to comment.