You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/x11-wm/wmfs/files/wmfs-99999999-strncat.patch

21 lines
598 B

--- a/src/launcher.c
+++ b/src/launcher.c
@@ -366,7 +366,7 @@
if(pos && (end = complete(&cache, tmpbuf)))
{
strncpy(buf, tmpbuf, sizeof(buf));
- strncat(buf, end, sizeof(buf));
+ strncat(buf, end, sizeof(buf) - 1);
found = true;
}
@@ -387,7 +387,7 @@
default:
lastwastab = false;
- strncat(buf, tmp, sizeof(tmp));
+ strncat(buf, tmp, sizeof(buf) - 1);
++pos;
break;
}