summaryrefslogtreecommitdiff
path: root/apps/buffering.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/buffering.c')
-rw-r--r--apps/buffering.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/buffering.c b/apps/buffering.c
index 9c0ad138f7..1482d6790b 100644
--- a/apps/buffering.c
+++ b/apps/buffering.c
@@ -1012,7 +1012,11 @@ int bufopen(const char *file, size_t offset, enum data_type type,
1012 1012
1013 return h->id; 1013 return h->id;
1014 } 1014 }
1015 1015#ifdef APPLICATION
1016 /* loading code from memory is not supported in application builds */
1017 else if (type == TYPE_CODEC)
1018 return ERR_UNSUPPORTED_TYPE;
1019#endif
1016 /* Other cases: there is a little more work. */ 1020 /* Other cases: there is a little more work. */
1017 int fd = open(file, O_RDONLY); 1021 int fd = open(file, O_RDONLY);
1018 if (fd < 0) 1022 if (fd < 0)