diff options
| author | Brandon Low <lostlogic@rockbox.org> | 2007-11-28 16:39:58 +0000 |
|---|---|---|
| committer | Brandon Low <lostlogic@rockbox.org> | 2007-11-28 16:39:58 +0000 |
| commit | e959c5aa95baf1f865ee141f08448f4748b05b4c (patch) | |
| tree | 1485ebd40e1b487fb202d9b5ad801a05b05ad53f /apps/buffering.c | |
| parent | 3e7f02e00789949e568b9c3f76cd97eb81ae1272 (diff) | |
| download | rockbox-e959c5aa95baf1f865ee141f08448f4748b05b4c.zip rockbox-e959c5aa95baf1f865ee141f08448f4748b05b4c.tar.gz rockbox-e959c5aa95baf1f865ee141f08448f4748b05b4c.tar.bz2 rockbox-e959c5aa95baf1f865ee141f08448f4748b05b4c.tar.xz | |
Possibly save a few bytes when stripping the tags of the last allocated handle
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15844 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/buffering.c')
| -rw-r--r-- | apps/buffering.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/buffering.c b/apps/buffering.c index f5bc2ee..1567a6e 100644 --- a/apps/buffering.c +++ b/apps/buffering.c @@ -1187,6 +1187,9 @@ ssize_t bufcuttail(int handle_id, size_t size) h->available -= size; h->filesize -= size; h->widx = RINGBUF_SUB(h->widx, size); + if (h == cur_handle) { + buf_widx = h->widx; + } return size; } |