mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-22 12:55:58 +01:00
examples/screencopy-dmabuf: stop using strncpy
strncpy doesn't guarantee that the result is zero-terminated.
This commit is contained in:
parent
366e8e3b91
commit
c2952411d3
1 changed files with 2 additions and 3 deletions
|
@ -76,7 +76,7 @@ static const struct format formats[] = {
|
||||||
{DRM_FORMAT_ABGR8888, false},
|
{DRM_FORMAT_ABGR8888, false},
|
||||||
};
|
};
|
||||||
|
|
||||||
static bool find_render_node(char *node, size_t maxlen) {
|
static bool find_render_node(char *node, size_t node_size) {
|
||||||
bool r = false;
|
bool r = false;
|
||||||
drmDevice *devices[64];
|
drmDevice *devices[64];
|
||||||
|
|
||||||
|
@ -87,8 +87,7 @@ static bool find_render_node(char *node, size_t maxlen) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
strncpy(node, dev->nodes[DRM_NODE_RENDER], maxlen - 1);
|
snprintf(node, node_size, "%s", dev->nodes[DRM_NODE_RENDER]);
|
||||||
node[maxlen - 1] = '\0';
|
|
||||||
r = true;
|
r = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue