summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/chroot.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libcsupport/src/chroot.c')
-rw-r--r--cpukit/libcsupport/src/chroot.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/libcsupport/src/chroot.c b/cpukit/libcsupport/src/chroot.c
index 9ec4ad470f..0c498e6a6f 100644
--- a/cpukit/libcsupport/src/chroot.c
+++ b/cpukit/libcsupport/src/chroot.c
@@ -80,7 +80,7 @@ int chroot( const char *path )
}
if ( rv != 0 ) {
- rtems_filesystem_global_location_release( new_root_loc );
+ rtems_filesystem_global_location_release( new_root_loc, true );
}
} else {
rv = -1;
@@ -89,7 +89,7 @@ int chroot( const char *path )
rtems_filesystem_eval_path_cleanup( &ctx );
if ( rv != 0 ) {
- rtems_filesystem_global_location_release( new_current_loc );
+ rtems_filesystem_global_location_release( new_current_loc, false );
}
return rv;