Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Sleuthkit
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IRT
Sleuthkit
Commits
5d365e3d
Commit
5d365e3d
authored
16 years ago
by
Brian Carrier
Browse files
Options
Downloads
Patches
Plain Diff
Removed fs_info from FS_META
parent
2182039a
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGES.txt
+14
-1
14 additions, 1 deletion
CHANGES.txt
tsk3/fs/fs_inode.c
+0
-4
0 additions, 4 deletions
tsk3/fs/fs_inode.c
tsk3/fs/tsk_fs.h
+0
-1
0 additions, 1 deletion
tsk3/fs/tsk_fs.h
with
14 additions
and
6 deletions
CHANGES.txt
+
14
−
1
View file @
5d365e3d
...
@@ -5,7 +5,20 @@
...
@@ -5,7 +5,20 @@
11/11/08: Bug Fix: Fixed crashing bug in istat on ExtX $OrphanFiles dir. Bug: 2266104
11/11/08: Bug Fix: Fixed crashing bug in istat on ExtX $OrphanFiles dir. Bug: 2266104
---------------- VERSION 3.0.0 --------------
11/16/08: Update: Added more HFS error checking and better loading
11/26/08: Update: Updated fls man page.
11/30/08: Update: Removed TODO file and using tracker for bugs and feature requests.
12/29/08: Bug Fix: Fixed incorrectly setting block status in file_walk
for compressed files (Bug: 2475246)
12/29/08: Bug Fix: removed fs_info field from FS_META because it
was not being set and should have been removed in 3.0. Reported by
Rob Joyce and Judson Powers.
---------------- VERSION 3.0.0 --------------
0/00/00: Update: Many, many, many API changes.
0/00/00: Update: Many, many, many API changes.
2/14/08: Update: Added mmcat tool.
2/14/08: Update: Added mmcat tool.
...
...
This diff is collapsed.
Click to expand it.
tsk3/fs/fs_inode.c
+
0
−
4
View file @
5d365e3d
...
@@ -132,7 +132,6 @@ tsk_fs_meta_close(TSK_FS_META * fs_meta)
...
@@ -132,7 +132,6 @@ tsk_fs_meta_close(TSK_FS_META * fs_meta)
void
void
tsk_fs_meta_reset
(
TSK_FS_META
*
a_fs_meta
)
tsk_fs_meta_reset
(
TSK_FS_META
*
a_fs_meta
)
{
{
TSK_FS_INFO
*
fs_tmp
;
void
*
content_ptr_tmp
;
void
*
content_ptr_tmp
;
size_t
content_len_tmp
;
size_t
content_len_tmp
;
TSK_FS_ATTRLIST
*
attr_tmp
;
TSK_FS_ATTRLIST
*
attr_tmp
;
...
@@ -140,7 +139,6 @@ tsk_fs_meta_reset(TSK_FS_META * a_fs_meta)
...
@@ -140,7 +139,6 @@ tsk_fs_meta_reset(TSK_FS_META * a_fs_meta)
char
*
link_tmp
;
char
*
link_tmp
;
// backup pointers
// backup pointers
fs_tmp
=
a_fs_meta
->
fs_info
;
content_ptr_tmp
=
a_fs_meta
->
content_ptr
;
content_ptr_tmp
=
a_fs_meta
->
content_ptr
;
content_len_tmp
=
a_fs_meta
->
content_len
;
content_len_tmp
=
a_fs_meta
->
content_len
;
attr_tmp
=
a_fs_meta
->
attr
;
attr_tmp
=
a_fs_meta
->
attr
;
...
@@ -152,8 +150,6 @@ tsk_fs_meta_reset(TSK_FS_META * a_fs_meta)
...
@@ -152,8 +150,6 @@ tsk_fs_meta_reset(TSK_FS_META * a_fs_meta)
a_fs_meta
->
tag
=
TSK_FS_META_TAG
;
a_fs_meta
->
tag
=
TSK_FS_META_TAG
;
// restore and clear the pointers
// restore and clear the pointers
a_fs_meta
->
fs_info
=
fs_tmp
;
a_fs_meta
->
content_ptr
=
content_ptr_tmp
;
a_fs_meta
->
content_ptr
=
content_ptr_tmp
;
a_fs_meta
->
content_len
=
content_len_tmp
;
a_fs_meta
->
content_len
=
content_len_tmp
;
...
...
This diff is collapsed.
Click to expand it.
tsk3/fs/tsk_fs.h
+
0
−
1
View file @
5d365e3d
...
@@ -407,7 +407,6 @@ extern "C" {
...
@@ -407,7 +407,6 @@ extern "C" {
*/
*/
typedef
struct
{
typedef
struct
{
int
tag
;
///< \internal Will be set to TSK_FS_META_TAG if structure is allocated
int
tag
;
///< \internal Will be set to TSK_FS_META_TAG if structure is allocated
TSK_FS_INFO
*
fs_info
;
///< Pointer to file system that file is located in.
TSK_FS_META_FLAG_ENUM
flags
;
///< Flags for this file for its allocation status etc.
TSK_FS_META_FLAG_ENUM
flags
;
///< Flags for this file for its allocation status etc.
TSK_INUM_T
addr
;
///< Address of the meta data structure for this file
TSK_INUM_T
addr
;
///< Address of the meta data structure for this file
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment