diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2010-05-19 08:58:23 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2018-05-31 22:43:05 +0200 |
commit | b76270bf9e6dd375e495fec92140a79a79415d27 (patch) | |
tree | 3dbed78b2279bf9f14207a16dc634b90995cbd40 /source/xap/gnuchess/xboard.buffer_overflow_fix.diff | |
parent | 5a12e7c134274dba706667107d10d231517d3e05 (diff) | |
download | current-b76270bf9e6dd375e495fec92140a79a79415d27.tar.gz |
Slackware 13.1slackware-13.1
Wed May 19 08:58:23 UTC 2010
Slackware 13.1 x86_64 stable is released!
Lots of thanks are due -- see the RELEASE_NOTES and the rest of the
ChangeLog for credits. The ISOs are on their way to replication,
a 6 CD-ROM 32-bit set and a dual-sided 32-bit/64-bit x86/x86_64 DVD.
We are taking pre-orders now at store.slackware.com, and offering
a discount if you sign up for a subscription. Consider picking up
a copy to help support the project. Thanks again to the Slackware
community for testing, contributing, and generally holding us to a
high level of quality. :-)
Enjoy!
Diffstat (limited to 'source/xap/gnuchess/xboard.buffer_overflow_fix.diff')
-rw-r--r-- | source/xap/gnuchess/xboard.buffer_overflow_fix.diff | 95 |
1 files changed, 0 insertions, 95 deletions
diff --git a/source/xap/gnuchess/xboard.buffer_overflow_fix.diff b/source/xap/gnuchess/xboard.buffer_overflow_fix.diff deleted file mode 100644 index f36d36ba..00000000 --- a/source/xap/gnuchess/xboard.buffer_overflow_fix.diff +++ /dev/null @@ -1,95 +0,0 @@ -#! /bin/sh /usr/share/dpatch/dpatch-run -## 09_fix_-icshost_buffer_overflow.dpatch by Florian Ernst <florian@debian.org> -## -## All lines beginning with `## DP:' are a description of the patch. -## DP: Of minor importance, though, as there is probably no attack vector -## DP: See bug#343560 - -@DPATCH@ -diff -urNad xboard-4.2.7~/backend.c xboard-4.2.7/backend.c ---- xboard-4.2.7~/backend.c 2003-11-28 10:37:36.000000000 +0100 -+++ xboard-4.2.7/backend.c 2005-12-16 22:19:16.000000000 +0100 -@@ -692,7 +692,7 @@ - sprintf(buf, "Could not open comm port %s", - appData.icsCommPort); - } else { -- sprintf(buf, "Could not connect to host %s, port %s", -+ snprintf(buf, sizeof(buf), "Could not connect to host %s, port %s", - appData.icsHost, appData.icsPort); - } - DisplayFatalError(buf, err, 1); -@@ -869,18 +869,18 @@ - } else if (*appData.gateway != NULLCHAR) { - if (*appData.remoteShell == NULLCHAR) { - /* Use the rcmd protocol to run telnet program on a gateway host */ -- sprintf(buf, "%s %s %s", -+ snprintf(buf, sizeof(buf), "%s %s %s", - appData.telnetProgram, appData.icsHost, appData.icsPort); - return OpenRcmd(appData.gateway, appData.remoteUser, buf, &icsPR); - - } else { - /* Use the rsh program to run telnet program on a gateway host */ - if (*appData.remoteUser == NULLCHAR) { -- sprintf(buf, "%s %s %s %s %s", appData.remoteShell, -+ snprintf(buf, sizeof(buf), "%s %s %s %s %s", appData.remoteShell, - appData.gateway, appData.telnetProgram, - appData.icsHost, appData.icsPort); - } else { -- sprintf(buf, "%s %s -l %s %s %s %s", -+ snprintf(buf, sizeof(buf), "%s %s -l %s %s %s %s", - appData.remoteShell, appData.gateway, - appData.remoteUser, appData.telnetProgram, - appData.icsHost, appData.icsPort); -@@ -1684,7 +1684,7 @@ - - if (loggedOn && !have_set_title && ics_handle[0] != NULLCHAR) { - char buf[MSG_SIZ]; -- sprintf(buf, "%s@%s", ics_handle, appData.icsHost); -+ snprintf(buf, sizeof(buf), "%s@%s", ics_handle, appData.icsHost); - DisplayIcsInteractionTitle(buf); - have_set_title = TRUE; - } -@@ -4882,7 +4882,7 @@ - SendToProgram(buf, cps); - } - if (cps->sendICS) { -- sprintf(buf, "ics %s\n", appData.icsActive ? appData.icsHost : "-"); -+ snprintf(buf, sizeof(buf), "ics %s\n", appData.icsActive ? appData.icsHost : "-"); - SendToProgram(buf, cps); - } - cps->maybeThinking = FALSE; -diff -urNad xboard-4.2.7~/xboard.c xboard-4.2.7/xboard.c ---- xboard-4.2.7~/xboard.c 2003-11-19 09:42:18.000000000 +0100 -+++ xboard-4.2.7/xboard.c 2005-12-16 22:19:16.000000000 +0100 -@@ -6734,8 +6734,8 @@ - strcpy(icon, text); - strcpy(title, text); - } else if (appData.icsActive) { -- sprintf(icon, "%s", appData.icsHost); -- sprintf(title, "%s: %s", programName, appData.icsHost); -+ snprintf(icon, sizeof(icon), "%s", appData.icsHost); -+ snprintf(title, sizeof(title), "%s: %s", programName, appData.icsHost); - } else if (appData.cmailGameName[0] != NULLCHAR) { - sprintf(icon, "%s", "CMail"); - sprintf(title, "%s: %s", programName, "CMail"); -@@ -6804,7 +6804,7 @@ - } else { - fprintf(stderr, "%s: %s: %s\n", - programName, message, strerror(error)); -- sprintf(buf, "%s: %s", message, strerror(error)); -+ snprintf(buf, sizeof(buf), "%s: %s", message, strerror(error)); - message = buf; - } - if (appData.popupExitMessage && boardWidget && XtIsRealized(boardWidget)) { -@@ -7488,9 +7488,9 @@ - char cmdLine[MSG_SIZ]; - - if (port[0] == NULLCHAR) { -- sprintf(cmdLine, "%s %s", appData.telnetProgram, host); -+ snprintf(cmdLine, sizeof(cmdLine), "%s %s", appData.telnetProgram, host); - } else { -- sprintf(cmdLine, "%s %s %s", appData.telnetProgram, host, port); -+ snprintf(cmdLine, sizeof(cmdLine), "%s %s %s", appData.telnetProgram, host, port); - } - return StartChildProcess(cmdLine, "", pr); - } |