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
9863397d
Commit
9863397d
authored
16 years ago
by
Brian Carrier
Browse files
Options
Downloads
Patches
Plain Diff
fs_dir_add now does not check meta_addr when adding (BUG: 2534449)
parent
fb5055a2
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGES.txt
+4
-0
4 additions, 0 deletions
CHANGES.txt
tsk3/fs/fs_dir.c
+1
-2
1 addition, 2 deletions
tsk3/fs/fs_dir.c
with
5 additions
and
2 deletions
CHANGES.txt
+
4
−
0
View file @
9863397d
...
@@ -28,6 +28,10 @@ to meta type). (Bug: 2389901). Reported by Barry Grundy.
...
@@ -28,6 +28,10 @@ to meta type). (Bug: 2389901). Reported by Barry Grundy.
1/12/09: Bug Fix: Fixed ISO9660 bug where large directory contents were not displayed. (Bug: 2503552). Reported by Tom Black.
1/12/09: Bug Fix: Fixed ISO9660 bug where large directory contents were not displayed. (Bug: 2503552). Reported by Tom Black.
1/24/09: Bug Fix: Fixed bug 2534449 where extra NTFS files were
shown if the MFT address was changed to 0 because fs_dir_add was
checking the address and name. Reported by Andy Bontoft.
---------------- VERSION 3.0.0 --------------
---------------- VERSION 3.0.0 --------------
0/00/00: Update: Many, many, many API changes.
0/00/00: Update: Many, many, many API changes.
...
...
This diff is collapsed.
Click to expand it.
tsk3/fs/fs_dir.c
+
1
−
2
View file @
9863397d
...
@@ -102,8 +102,7 @@ tsk_fs_dir_add(TSK_FS_DIR * a_fs_dir, const TSK_FS_NAME * a_fs_name)
...
@@ -102,8 +102,7 @@ tsk_fs_dir_add(TSK_FS_DIR * a_fs_dir, const TSK_FS_NAME * a_fs_name)
// see if we already have it in the buffer / queue
// see if we already have it in the buffer / queue
for
(
i
=
0
;
i
<
a_fs_dir
->
names_used
;
i
++
)
{
for
(
i
=
0
;
i
<
a_fs_dir
->
names_used
;
i
++
)
{
if
((
a_fs_name
->
meta_addr
==
a_fs_dir
->
names
[
i
].
meta_addr
)
&&
if
(
strcmp
(
a_fs_name
->
name
,
a_fs_dir
->
names
[
i
].
name
)
==
0
)
{
(
strcmp
(
a_fs_name
->
name
,
a_fs_dir
->
names
[
i
].
name
)
==
0
))
{
/* We do not check type because then we cannot detect NTFS orphan file
/* We do not check type because then we cannot detect NTFS orphan file
* duplicates that are added as "-/r" while a similar entry exists as "r/r"
* duplicates that are added as "-/r" while a similar entry exists as "r/r"
...
...
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