summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-08-23 23:17:42 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-08-23 23:17:42 +0000
commitbf4766fe69ef957a5678f4f3014b9c46862cad8b (patch)
tree5553ddd648628a4ff886fc0c4fbf3521ce221153 /cpukit/libcsupport
parent2010-08-23 Joel Sherrill <joel.sherrilL@OARcorp.com> (diff)
downloadrtems-bf4766fe69ef957a5678f4f3014b9c46862cad8b.tar.bz2
2010-08-23 Joel Sherrill <joel.sherrill@oarcorp.com>
* libblock/src/flashdisk.c, libblock/src/nvdisk.c, libcsupport/src/ioctl.c, libfs/src/dosfs/fat_file.c: Add va_end().
Diffstat (limited to 'cpukit/libcsupport')
-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 a2328e22f8..ae8a88bd77 100644
--- a/cpukit/libcsupport/src/ioctl.c
+++ b/cpukit/libcsupport/src/ioctl.c
@@ -49,5 +49,6 @@ int ioctl(
*/
rc = (*iop->pathinfo.handlers->ioctl_h)( iop, command, buffer );
+ va_end( ap );
return rc;
}