camera: fix possible off-by-one with strncat()
This commit is contained in:
parent
a0fb95977e
commit
4046248133
|
@ -932,9 +932,9 @@ static void _properties_window(Camera * camera)
|
||||||
for(i = 0; capabilities[i].name != NULL; i++)
|
for(i = 0; capabilities[i].name != NULL; i++)
|
||||||
if(camera->cap.capabilities & capabilities[i].capability)
|
if(camera->cap.capabilities & capabilities[i].capability)
|
||||||
{
|
{
|
||||||
strncat(buf, sep, sizeof(buf) - strlen(buf));
|
strncat(buf, sep, sizeof(buf) - strlen(buf) - 1);
|
||||||
strncat(buf, capabilities[i].name, sizeof(buf)
|
strncat(buf, capabilities[i].name, sizeof(buf)
|
||||||
- strlen(buf));
|
- strlen(buf) - 1);
|
||||||
sep = ", ";
|
sep = ", ";
|
||||||
}
|
}
|
||||||
buf[sizeof(buf) - 1] = '\0';
|
buf[sizeof(buf) - 1] = '\0';
|
||||||
|
|
Loading…
Reference in New Issue
Block a user