diff options
-rw-r--r-- | x11-wm/wmfs/files/wmfs-99999999-strncat.patch | 20 | ||||
-rw-r--r-- | x11-wm/wmfs/wmfs-99999999.ebuild | 1 |
2 files changed, 21 insertions, 0 deletions
diff --git a/x11-wm/wmfs/files/wmfs-99999999-strncat.patch b/x11-wm/wmfs/files/wmfs-99999999-strncat.patch new file mode 100644 index 000000000000..e55cd00121ba --- /dev/null +++ b/x11-wm/wmfs/files/wmfs-99999999-strncat.patch @@ -0,0 +1,20 @@ +--- 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; + } diff --git a/x11-wm/wmfs/wmfs-99999999.ebuild b/x11-wm/wmfs/wmfs-99999999.ebuild index a2a1959136ed..416f8f678db2 100644 --- a/x11-wm/wmfs/wmfs-99999999.ebuild +++ b/x11-wm/wmfs/wmfs-99999999.ebuild @@ -30,6 +30,7 @@ PATCHES=( "${FILESDIR}"/${PN}-99999999-Debian.patch "${FILESDIR}"/${PN}-99999999-desktop.patch "${FILESDIR}"/${PN}-99999999-fno-common.patch + "${FILESDIR}"/${PN}-99999999-strncat.patch ) src_configure() { |