]> git.pld-linux.org Git - packages/openssh.git/commitdiff
- SECURITY fix for off-by-one
authorJakub Bogusz <qboosh@pld-linux.org>
Thu, 7 Mar 2002 16:19:24 +0000 (16:19 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    openssh-pine-cert-20020301.patch -> 1.1

openssh-pine-cert-20020301.patch [new file with mode: 0644]

diff --git a/openssh-pine-cert-20020301.patch b/openssh-pine-cert-20020301.patch
new file mode 100644 (file)
index 0000000..288f239
--- /dev/null
@@ -0,0 +1,12 @@
+--- openssh/channels_old.c     Mon Mar  4 02:07:06 2002
++++ openssh/channels.c Mon Mar  4 02:07:16 2002
+@@ -151,8 +151,8 @@
+ channel_lookup(int id)
+ {
+       Channel *c;
+-      if (id < 0 || id > channels_alloc) {
++      if (id < 0 || id >= channels_alloc) {
+               log("channel_lookup: %d: bad id", id);
+               return NULL;
+       }
This page took 0.306811 seconds and 4 git commands to generate.