2011-02-08 Brett Swimley <bswimley@advanced.pro>

* libfs/src/rfs/rtems-rfs-rtems.c: Fix bug where the eval path did
        not close an inode.
This commit is contained in:
Chris Johns
2011-02-07 22:34:10 +00:00
parent ea44530098
commit ebb86f28ea
2 changed files with 11 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
2011-02-08 Brett Swimley <bswimley@advanced.pro>
* libfs/src/rfs/rtems-rfs-rtems.c: Fix bug where the eval path did
not close an inode.
2011-02-02 Ralf Corsépius <ralf.corsepius@rtems.org>
* configure.ac: Require autoconf-2.68, automake-1.11.1.

View File

@@ -151,7 +151,10 @@ rtems_rfs_rtems_eval_path (const char* path,
if (rtems_rfs_current_dir (node))
{
if (*path)
{
rtems_rfs_inode_close (fs, &inode);
continue;
}
break;
}
@@ -337,7 +340,10 @@ rtems_rfs_rtems_eval_for_make (const char* path,
if (rtems_rfs_current_dir (node))
{
if (*path)
{
rtems_rfs_inode_close (fs, &inode);
continue;
}
break;
}