diff options
Diffstat (limited to 'test/test.lv2/test.c')
-rw-r--r-- | test/test.lv2/test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.lv2/test.c b/test/test.lv2/test.c index 3fbef66..2850f0e 100644 --- a/test/test.lv2/test.c +++ b/test/test.lv2/test.c @@ -96,7 +96,7 @@ instantiate(const LV2_Descriptor* descriptor, return NULL; } - strcpy(test->tmp_file_path, TMP_TEMPLATE); + strncpy(test->tmp_file_path, TMP_TEMPLATE, sizeof(TMP_TEMPLATE)); mkstemp(test->tmp_file_path); LV2_State_Make_Path* make_path = NULL; |