MXS-2470 Update tail pointer in gwbuf_clone

This commit is contained in:
Johan Wikman 2019-05-14 11:04:40 +03:00
parent 600e23ae2d
commit 01c4beec10

View File

@ -215,6 +215,10 @@ GWBUF* gwbuf_clone(GWBUF* buf)
gwbuf_free(rval);
rval = NULL;
}
else
{
rval->tail = clonebuf;
}
}
return rval;