diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2011-06-20 20:12:15 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2011-06-20 20:12:15 +0000 |
| commit | e0637255341a165e1e186e6f2836c614f0121c8b (patch) | |
| tree | 248fb995e73cfb4b623a5d041e3e28b311fbafde /apps/tagcache.c | |
| parent | 38da400e58b78f0fd399bdb8e52e1ba63aca75a7 (diff) | |
| download | rockbox-e0637255341a165e1e186e6f2836c614f0121c8b.zip rockbox-e0637255341a165e1e186e6f2836c614f0121c8b.tar.gz rockbox-e0637255341a165e1e186e6f2836c614f0121c8b.tar.bz2 rockbox-e0637255341a165e1e186e6f2836c614f0121c8b.tar.xz | |
Dircache: Return the size of the result string in dircache_copy_path() so that callers don't need to call strlen on it.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30034 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tagcache.c')
| -rw-r--r-- | apps/tagcache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/tagcache.c b/apps/tagcache.c index 0c85fc5..080f419 100644 --- a/apps/tagcache.c +++ b/apps/tagcache.c @@ -1481,10 +1481,10 @@ static bool get_next(struct tagcache_search *tcs) if (tcs->type == tag_filename && (flag & FLAG_DIRCACHE) && is_dircache_intact()) { - dircache_copy_path((struct dircache_entry *)tcs->position, + size_t len = dircache_copy_path((struct dircache_entry *)tcs->position, buf, sizeof buf); + tcs->result_len = len + 1; tcs->result = buf; - tcs->result_len = strlen(buf) + 1; tcs->ramresult = false; return true; |