summaryrefslogtreecommitdiff
path: root/apps/plugins/test_codec.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/test_codec.c')
-rw-r--r--apps/plugins/test_codec.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/plugins/test_codec.c b/apps/plugins/test_codec.c
index a708ed7b07..c51fc4006f 100644
--- a/apps/plugins/test_codec.c
+++ b/apps/plugins/test_codec.c
@@ -451,7 +451,6 @@ static void init_ci(void)
451 451
452 /* strings and memory */ 452 /* strings and memory */
453 ci.strcpy = rb->strcpy; 453 ci.strcpy = rb->strcpy;
454 ci.strncpy = rb->strncpy;
455 ci.strlen = rb->strlen; 454 ci.strlen = rb->strlen;
456 ci.strcmp = rb->strcmp; 455 ci.strcmp = rb->strcmp;
457 ci.strcat = rb->strcat; 456 ci.strcat = rb->strcat;
@@ -716,7 +715,7 @@ enum plugin_status plugin_start(const void* parameter)
716 /* Test all files in the same directory as the file selected by the 715 /* Test all files in the same directory as the file selected by the
717 user */ 716 user */
718 717
719 rb->strncpy(dirpath,parameter,sizeof(dirpath)); 718 rb->strlcpy(dirpath,parameter,sizeof(dirpath));
720 ch = rb->strrchr(dirpath,'/'); 719 ch = rb->strrchr(dirpath,'/');
721 ch[1]=0; 720 ch[1]=0;
722 721