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-misc/xdiskusage/files/xdiskusage-1.52-pathbuf.patch

12 lines
334 B

--- a/xdiskusage.C
+++ b/xdiskusage.C
@@ -458,7 +458,7 @@
} else {
if (!disk) {
// follow all symbolic links...
- strncpy(pathbuf, path, 1024);
+ strncpy(pathbuf, path, 1024 -1);
for (int i=0; i<10; i++) {
char *p = (char*)fl_filename_name(pathbuf);
int j = readlink(pathbuf, p, 1024-(p-pathbuf));