fix compiler warning (entirely justified) about use of strncpy()

This commit is contained in:
Paul Davis 2021-06-06 22:40:08 -06:00
parent ec7b756d90
commit 7b3fa14231

View file

@ -793,10 +793,10 @@ lrdf_remove_preset (const char* /*source*/, const char *setting_uri)
lrdf_statement p;
lrdf_statement *q;
lrdf_statement *i;
char setting_uri_copy[64];
char setting_uri_copy[65];
char buf[64];
strncpy(setting_uri_copy, setting_uri, sizeof(setting_uri_copy));
strncpy(setting_uri_copy, setting_uri, sizeof(setting_uri_copy) - 1);
p.subject = setting_uri_copy;
strncpy(buf, LADSPA_BASE "hasPortValue", sizeof(buf));