summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorBrandon Low <lostlogic@rockbox.org>2007-10-30 15:09:52 +0000
committerBrandon Low <lostlogic@rockbox.org>2007-10-30 15:09:52 +0000
commit151b7c9038ba796cd87b6ff2904253e6a3962304 (patch)
tree9a72bddccfe047cf6a1632fd48c1f5cce20935ab /apps
parent7030279dd2626741ec9ab1206a652e5b9b863eb9 (diff)
Further improve the mistakes I made in add_handle (thanks Nico_P for not beating me with them)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15376 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/buffering.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/apps/buffering.c b/apps/buffering.c
index 97f85dfbc7..0325d4e4f3 100644
--- a/apps/buffering.c
+++ b/apps/buffering.c
@@ -216,8 +216,9 @@ buf_ridx == buf_widx means the buffer is empty.
alloc_all tells us if we must immediately be able to allocate data_size
returns a valid memory handle if all conditions for allocation are met.
NULL if there memory_handle itself cannot be allocated or if the
- data_size cannot be allocated and alloc_all is set. This function
- has no side effects if NULL is returned.
+ data_size cannot be allocated and alloc_all is set. This function's
+ only potential side effect is to allocate space for the cur_handle
+ if it returns NULL.
*/
static struct memory_handle *add_handle(size_t data_size, const bool can_wrap,
const bool alloc_all)
@@ -225,7 +226,7 @@ static struct memory_handle *add_handle(size_t data_size, const bool can_wrap,
/* gives each handle a unique id, unsigned to handle wraps gracefully */
static unsigned int cur_handle_id = 1;
size_t shift;
- size_t new_widx = buf_widx;
+ size_t new_widx;
size_t len;
int overlap;
@@ -242,12 +243,12 @@ static struct memory_handle *add_handle(size_t data_size, const bool can_wrap,
return NULL;
} else {
/* Allocate the remainder of the space for the current handle */
- new_widx = RINGBUF_ADD(cur_handle->widx, cur_handle->filerem);
+ buf_widx = RINGBUF_ADD(cur_handle->widx, cur_handle->filerem);
}
}
- /* align buf_widx to 4 bytes up */
- new_widx = (RINGBUF_ADD(new_widx, 3)) & ~3;
+ /* align to 4 bytes up */
+ new_widx = RINGBUF_ADD(buf_widx, 3) & ~3;
len = data_size + sizeof(struct memory_handle);
@@ -265,7 +266,7 @@ static struct memory_handle *add_handle(size_t data_size, const bool can_wrap,
new_widx += data_size - overlap;
}
- /* This is how far we shifted buf_widx to align things */
+ /* How far we shifted buf_widx to align things, must be < buffer_len */
shift = RINGBUF_SUB(new_widx, buf_widx);
/* How much space are we short in the actual ring buffer? */