diff options
Diffstat (limited to 'main/dev86/dev86-0.16.19-memmove.patch')
| -rw-r--r-- | main/dev86/dev86-0.16.19-memmove.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/main/dev86/dev86-0.16.19-memmove.patch b/main/dev86/dev86-0.16.19-memmove.patch new file mode 100644 index 0000000000..e0bd8b7ce0 --- /dev/null +++ b/main/dev86/dev86-0.16.19-memmove.patch @@ -0,0 +1,17 @@ +https://bugs.gentoo.org/354351 + +fix sniped from Debian: +* Fix "FTBFS: ncc: illegal label": apply patch by dai that replaces strcpy + by memmove (closes: #591133). + +--- a/copt/copt.c ++++ b/copt/copt.c +@@ -174,7 +174,7 @@ + /* Delete leading white spaces */ + for (cp = buf; *cp && isspace(*cp); cp++) ; + if (cp != buf && *cp) +- strcpy(buf, cp); ++ memmove(buf, cp, strlen(cp) + 1); + + return(buf); + } |
