summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/ioctl.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-01-20 15:48:22 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-01-20 15:48:22 +0000
commit2d733c424ba21cfa55386e81d668036cc801fc6d (patch)
tree2b578a8d689c495f9c28c0a63d5c3ed41b1d6e0d /cpukit/libcsupport/src/ioctl.c
parentRemoved referencing to network driver since it has not been merged yet. (diff)
downloadrtems-2d733c424ba21cfa55386e81d668036cc801fc6d.tar.bz2
More general fix based on bug report and patch from Ian Lance Taylor
<ian@airs.com> to fix this problem: There is a small bug in __rtems_close in c/src/lib/libc/libio.c. It does not check whether the file descriptor it is passed is open. This can cause it to make a null dereference if it is passed a file descriptor which is in the valid range but which was not opened, or which was already closed.
Diffstat (limited to 'cpukit/libcsupport/src/ioctl.c')
-rw-r--r--cpukit/libcsupport/src/ioctl.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/cpukit/libcsupport/src/ioctl.c b/cpukit/libcsupport/src/ioctl.c
index 9284c7f9dc..5ac530b6e0 100644
--- a/cpukit/libcsupport/src/ioctl.c
+++ b/cpukit/libcsupport/src/ioctl.c
@@ -28,6 +28,7 @@ int ioctl(
rtems_libio_check_fd( fd );
iop = rtems_libio_iop( fd );
+ rtems_libio_check_is_open(iop);
/*
* If this file descriptor is mapped to an external set of handlers,