Hi Brian,
Below is a small patch for 2.07. Without it fs_ifind_path will fail to
set result when looking up '/'. I'm not sure if this affects the normal
operation of sleuthkit/autopsy, but I hit it in pyflag!
diff -ruN sleuthkit-2.07/src/fstools/ifind_lib.c sleuthkit-2.07-dave/src/fstools/ifind_lib.c
--- sleuthkit-2.07/src/fstools/ifind_lib.c 2006-12-16 05:40:12.000000000 +1100
+++ sleuthkit-2.07-dave/src/fstools/ifind_lib.c 2006-12-18 01:02:07.691884250 +1100
@@ -303,6 +303,7 @@
#ifdef TSK_WIN32
free(cpath);
#endif
+ *result = fs->root_inum;
return 0;
}
Thanks,
Dave
|