summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/utime.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libcsupport/src/utime.c')
-rw-r--r--cpukit/libcsupport/src/utime.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/cpukit/libcsupport/src/utime.c b/cpukit/libcsupport/src/utime.c
index f1a12ee1b2..ccc92d044e 100644
--- a/cpukit/libcsupport/src/utime.c
+++ b/cpukit/libcsupport/src/utime.c
@@ -24,12 +24,18 @@ int utime(
)
{
rtems_filesystem_location_info_t temp_loc;
+ int result;
+
+ if ( !temp_loc.ops->utime )
+ set_errno_and_return_minus_one( ENOTSUP );
if ( rtems_filesystem_evaluate_path( path, 0x00, &temp_loc, TRUE ) )
return -1;
- if ( !temp_loc.ops->utime )
- set_errno_and_return_minus_one( ENOTSUP );
+ result = (*temp_loc.ops->utime)( &temp_loc, times->actime, times->modtime );
+
+ if ( temp_loc.ops->freenod )
+ (*temp_loc.ops->freenod)( &temp_loc );
- return (*temp_loc.ops->utime)( &temp_loc, times->actime, times->modtime );
+ return result;
}