diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2005-10-16 07:41:55 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2005-10-16 07:41:55 +0000 |
commit | 40a3261d1a6e2617f6afde0cd6d762a7e211af7a (patch) | |
tree | d70bbf882801af3a4e58dde3ed6a1da1849479d4 /lang/python24/files/patch-Modules::fcntlmodule.c | |
parent | Fix the string format vulnerability desribed at (diff) |
This commit was manufactured by cvs2svn to create tag 'RELEASE_6_0_0'.release/6.0.0
Diffstat (limited to 'lang/python24/files/patch-Modules::fcntlmodule.c')
-rw-r--r-- | lang/python24/files/patch-Modules::fcntlmodule.c | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/lang/python24/files/patch-Modules::fcntlmodule.c b/lang/python24/files/patch-Modules::fcntlmodule.c deleted file mode 100644 index c9ae38a1759b..000000000000 --- a/lang/python24/files/patch-Modules::fcntlmodule.c +++ /dev/null @@ -1,35 +0,0 @@ -Index: Modules/fcntlmodule.c -=================================================================== -RCS file: /cvsroot/python/python/dist/src/Modules/fcntlmodule.c,v -retrieving revision 2.43 -retrieving revision 2.44 -diff -u -r2.43 -r2.44 ---- Modules/fcntlmodule.c 30 Nov 2004 14:31:54 -0000 2.43 -+++ Modules/fcntlmodule.c 27 Jul 2005 20:24:30 -0000 2.44 -@@ -102,7 +102,7 @@ - int mutate_arg = 1; - char buf[1024]; - -- if (PyArg_ParseTuple(args, "O&iw#|i:ioctl", -+ if (PyArg_ParseTuple(args, "O&Iw#|i:ioctl", - conv_descriptor, &fd, &code, - &str, &len, &mutate_arg)) { - char *arg; -@@ -151,7 +151,7 @@ - } - - PyErr_Clear(); -- if (PyArg_ParseTuple(args, "O&is#:ioctl", -+ if (PyArg_ParseTuple(args, "O&Is#:ioctl", - conv_descriptor, &fd, &code, &str, &len)) { - if (len > sizeof buf) { - PyErr_SetString(PyExc_ValueError, -@@ -172,7 +172,7 @@ - PyErr_Clear(); - arg = 0; - if (!PyArg_ParseTuple(args, -- "O&i|i;ioctl requires a file or file descriptor," -+ "O&I|i;ioctl requires a file or file descriptor," - " an integer and optionally a integer or buffer argument", - conv_descriptor, &fd, &code, &arg)) { - return NULL; |