diff options
author | Yen-Ming Lee <leeym@FreeBSD.org> | 2003-06-01 09:29:13 +0000 |
---|---|---|
committer | Yen-Ming Lee <leeym@FreeBSD.org> | 2003-06-01 09:29:13 +0000 |
commit | 1026ab92c2d580642b2c3dcd9142864aca1fd063 (patch) | |
tree | 7f610ee8f0a7e0683db7c341b179f02ed694ddf6 /irc/epic5/files/patch-ctcp.c | |
parent | Fix build problem when using WITHOUT_X11. (diff) |
Security Update
Fix "Possible remote exploit from rogue server" problem
PR: 52723
Submitted by: Anders Andersson <anders@andersa.net>
Notes
Notes:
svn path=/head/; revision=81881
Diffstat (limited to 'irc/epic5/files/patch-ctcp.c')
-rw-r--r-- | irc/epic5/files/patch-ctcp.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/irc/epic5/files/patch-ctcp.c b/irc/epic5/files/patch-ctcp.c new file mode 100644 index 000000000000..b8f4eef94264 --- /dev/null +++ b/irc/epic5/files/patch-ctcp.c @@ -0,0 +1,12 @@ +--- source/ctcp.c.orig Tue Dec 5 01:11:56 2000 ++++ source/ctcp.c Tue May 27 16:55:04 2003 +@@ -897,7 +897,8 @@ + int len; + + /* Make sure that the final \001 doesnt get truncated */ +- len = IRCD_BUFFER_SIZE - (12 + strlen(to)); ++ if ((len = IRCD_BUFFER_SIZE - (12 + strlen(to))) < 0) ++ return; + putbuf2 = alloca(len); + + if (format) |