X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Fcpbuffer.h;h=1478b740a9ac2512c971f85e61b0e962ab45279e;hb=36d2781d9f4890dda54419d38679d2da3d04b7bd;hp=1c05174a6ea8db0f1be1519a0a14cb8702fe9a40;hpb=ca8d273dbb0709867d5e657c43ca16c4fe2036de;p=oweals%2Fdinit.git diff --git a/src/cpbuffer.h b/src/cpbuffer.h index 1c05174..1478b74 100644 --- a/src/cpbuffer.h +++ b/src/cpbuffer.h @@ -26,7 +26,12 @@ template class CPBuffer int pos = cur_idx + index; if (pos >= SIZE) pos -= SIZE; - return &buf[cur_idx]; + return &buf[pos]; + } + + char * get_buf_base() + { + return buf; } int get_contiguous_length(char *ptr)