summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/ftruncate.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libcsupport/src/ftruncate.c')
-rw-r--r--cpukit/libcsupport/src/ftruncate.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/cpukit/libcsupport/src/ftruncate.c b/cpukit/libcsupport/src/ftruncate.c
index 401510b2ff..99a9c6b5ef 100644
--- a/cpukit/libcsupport/src/ftruncate.c
+++ b/cpukit/libcsupport/src/ftruncate.c
@@ -32,6 +32,7 @@ int ftruncate( int fd, off_t length )
LIBIO_GET_IOP_WITH_ACCESS( fd, iop, LIBIO_FLAGS_WRITE, EINVAL );
rv = (*iop->pathinfo.handlers->ftruncate_h)( iop, length );
+ rtems_libio_iop_drop( iop );
} else {
errno = EINVAL;
rv = -1;