summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index a97f7e4754..62bc4cfde7 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -347,7 +347,7 @@ int codec_load_ram(char* pluginptr, size_t size, void *parameter, void* ptr2, si
347 347
348 size -= copy_n; 348 size -= copy_n;
349 if (size > 0) { 349 if (size > 0) {
350 memcpy(ptr2, &pluginptr[copy_n], size); 350 memcpy(&pluginbuf[copy_n], ptr2, size);
351 } 351 }
352 } 352 }
353 353