Skip to content
Snippets Groups Projects
Commit 2d676fab authored by rswindell's avatar rswindell
Browse files

Changed ring buffer allocation to size+1, so when you create a 10K ring buffer

(for example), you end up with 10K of usable buffer (need extra byte to detect
wrap). Was previously limiting usable buffer to size-1.
parent 78cc6f60
No related branches found
No related tags found
No related merge requests found
......@@ -84,14 +84,14 @@ int RINGBUFCALL RingBufInit( RingBuf* rb, DWORD size
#endif
)
{
if((rb->pStart=(BYTE *)os_malloc(size))==NULL)
if((rb->pStart=(BYTE *)os_malloc(size+1))==NULL)
return(-1);
#ifndef RINGBUF_USE_STD_RTL
rb_free=os_free;
rb_memcpy=os_memcpy;
#endif
rb->pHead=rb->pTail=rb->pStart;
rb->pEnd=rb->pStart+size-1;
rb->pEnd=rb->pStart+size;
rb->size=size;
return(0);
}
......@@ -122,7 +122,7 @@ DWORD RINGBUFCALL RingBufFree( RingBuf* rb )
{
DWORD retval;
retval = (rb->size - RingBufFull( rb ))-1;
retval = (rb->size - RingBufFull( rb ));
return(retval);
}
......
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