diff options
author | 2007-04-06 21:45:05 +0000 | |
---|---|---|
committer | 2007-04-06 21:45:05 +0000 | |
commit | 32973d68071cc5540cbb5cf2778c1cb74da30855 (patch) | |
tree | 6e207eb86d765ae6a1fac5d312ee9c95807554c7 /games-strategy/warzone2100/files | |
parent | ppc stable, bug #172025 (diff) | |
download | gentoo-2-32973d68071cc5540cbb5cf2778c1cb74da30855.tar.gz gentoo-2-32973d68071cc5540cbb5cf2778c1cb74da30855.tar.bz2 gentoo-2-32973d68071cc5540cbb5cf2778c1cb74da30855.zip |
Version bump with security patch, bug #173518
(Portage version: 2.1.2.3)
Diffstat (limited to 'games-strategy/warzone2100/files')
3 files changed, 16 insertions, 3 deletions
diff --git a/games-strategy/warzone2100/files/digest-warzone2100-2.0.5 b/games-strategy/warzone2100/files/digest-warzone2100-2.0.5 deleted file mode 100644 index c0e952cc040e..000000000000 --- a/games-strategy/warzone2100/files/digest-warzone2100-2.0.5 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 56e83a64d5b7aa60ced3d7ac7281bb42 warzone2100-2.0.5.tar.bz2 19779896 -RMD160 24e9adc9a48b8bb5d47bc7d3a3f408c5ae2e62e6 warzone2100-2.0.5.tar.bz2 19779896 -SHA256 0220556d9487604853e7cb1e33740cf86d8649bbb2efb1f5f8e421c044f3bd6f warzone2100-2.0.5.tar.bz2 19779896 diff --git a/games-strategy/warzone2100/files/digest-warzone2100-2.0.6 b/games-strategy/warzone2100/files/digest-warzone2100-2.0.6 new file mode 100644 index 000000000000..2797e04f7d7e --- /dev/null +++ b/games-strategy/warzone2100/files/digest-warzone2100-2.0.6 @@ -0,0 +1,3 @@ +MD5 f831dcbc1961c6d3fe8a354439f063a2 warzone2100-2.0.6.tar.bz2 20009086 +RMD160 d4822aad461c6733c8f821c125b10a8288e7021c warzone2100-2.0.6.tar.bz2 20009086 +SHA256 2f10634a736b7af720ad477e08ba2a36bd2b68dd79e2ba1940f4a82962102ae9 warzone2100-2.0.6.tar.bz2 20009086 diff --git a/games-strategy/warzone2100/files/warzone2100-2.0.6-buffer-overflow.patch b/games-strategy/warzone2100/files/warzone2100-2.0.6-buffer-overflow.patch new file mode 100644 index 000000000000..97569117bb08 --- /dev/null +++ b/games-strategy/warzone2100/files/warzone2100-2.0.6-buffer-overflow.patch @@ -0,0 +1,13 @@ +Index: src/multiplay.c +=================================================================== +--- src/multiplay.c (revision 1021) ++++ src/multiplay.c (working copy) +@@ -1340,7 +1340,7 @@ + strcpy(msg,NetPlay.players[i].name); + strcat(msg," : "); // seperator + //strcat(msg, &(pMsg->body[4])); // add message +- strncat(msg, &(pMsg->body[4]), MAX_CONSOLE_STRING_LENGTH); // add message ++ strncat(msg, &(pMsg->body[4]), MAX_CONSOLE_STRING_LENGTH-strlen(msg)-1);// add message + addConsoleMessage((char *)&msg,DEFAULT_JUSTIFY); + + //multiplayer message callback |