diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2011-08-14 11:23:01 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2011-08-14 11:23:01 +0000 |
| commit | baa9c48a662f0d656114669e5fb227cb4f6760a0 (patch) | |
| tree | d59642a7890bd4d54dd661e938ec198ff7321d8e /apps | |
| parent | e20ff44e9d9b03630db02ec3cafccc3153f208ee (diff) | |
| download | rockbox-baa9c48a662f0d656114669e5fb227cb4f6760a0.zip rockbox-baa9c48a662f0d656114669e5fb227cb4f6760a0.tar.gz rockbox-baa9c48a662f0d656114669e5fb227cb4f6760a0.tar.bz2 rockbox-baa9c48a662f0d656114669e5fb227cb4f6760a0.tar.xz | |
Extension entries need an extra nul byte.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30297 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/metadata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/metadata.c b/apps/metadata.c index 83ff365..efe18a7 100644 --- a/apps/metadata.c +++ b/apps/metadata.c @@ -62,7 +62,7 @@ const struct afmt_entry audio_formats[AFMT_NUM_CODECS] = { /* Unknown file format */ [0 ... AFMT_NUM_CODECS-1] = - AFMT_ENTRY("???", NULL, NULL, NULL, "" ), + AFMT_ENTRY("???", NULL, NULL, NULL, "\0" ), /* MPEG Audio layer 2 */ [AFMT_MPA_L2] = |