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
8e5857c8
Commit
8e5857c8
authored
15 years ago
by
Brian Carrier
Browse files
Options
Downloads
Patches
Plain Diff
Resolved some compile warnings in recent fixes
parent
bc177431
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
tsk3/fs/fs_attr.c
+1
-1
1 addition, 1 deletion
tsk3/fs/fs_attr.c
tsk3/fs/hfs.c
+0
-3
0 additions, 3 deletions
tsk3/fs/hfs.c
tsk3/fs/hfs_dent.c
+2
-1
2 additions, 1 deletion
tsk3/fs/hfs_dent.c
with
3 additions
and
5 deletions
tsk3/fs/fs_attr.c
+
1
−
1
View file @
8e5857c8
...
...
@@ -1037,7 +1037,7 @@ tsk_fs_attr_read(const TSK_FS_ATTR * a_fs_attr, TSK_OFF_T a_offset,
}
if
(
a_offset
+
a_len
>
a_fs_attr
->
size
)
read_len
=
a_fs_attr
->
size
-
(
size_t
)
a_offset
;
read_len
=
(
size_t
)(
a_fs_attr
->
size
-
a_offset
)
;
else
read_len
=
a_len
;
...
...
This diff is collapsed.
Click to expand it.
tsk3/fs/hfs.c
+
0
−
3
View file @
8e5857c8
...
...
@@ -1679,7 +1679,6 @@ static uint8_t
hfs_make_badblockfile
(
HFS_INFO
*
hfs
,
TSK_FS_FILE
*
fs_file
)
{
TSK_FS_ATTR
*
fs_attr
;
TSK_FS_ATTR_RUN
*
attr_run
;
if
(
tsk_verbose
)
tsk_fprintf
(
stderr
,
...
...
@@ -1699,7 +1698,6 @@ hfs_make_badblockfile(HFS_INFO * hfs, TSK_FS_FILE * fs_file)
TSK_FS_ATTR_NONRES
))
==
NULL
)
{
strncat
(
tsk_errstr2
,
" - hfs_make_attrfile"
,
TSK_ERRSTR_L
-
strlen
(
tsk_errstr2
));
tsk_fs_attr_run_free
(
attr_run
);
return
1
;
}
...
...
@@ -1710,7 +1708,6 @@ hfs_make_badblockfile(HFS_INFO * hfs, TSK_FS_FILE * fs_file)
strncat
(
tsk_errstr2
,
" - hfs_make_attrfile"
,
TSK_ERRSTR_L
-
strlen
(
tsk_errstr2
));
tsk_fs_attr_free
(
fs_attr
);
tsk_fs_attr_run_free
(
attr_run
);
return
1
;
}
...
...
This diff is collapsed.
Click to expand it.
tsk3/fs/hfs_dent.c
+
2
−
1
View file @
8e5857c8
...
...
@@ -195,6 +195,7 @@ hfs_dir_open_meta_cb(HFS_INFO * hfs, int8_t level_type,
else
{
uint8_t
*
rec_buf
=
(
uint8_t
*
)
cur_key
;
uint16_t
rec_type
;
size_t
rec_off2
;
if
(
tsk_getu32
(
hfs
->
fs_info
.
endian
,
cur_key
->
parent_cnid
)
<
*
cnid_p
)
...
...
@@ -203,7 +204,7 @@ hfs_dir_open_meta_cb(HFS_INFO * hfs, int8_t level_type,
cur_key
->
parent_cnid
)
>
*
cnid_p
)
return
HFS_BTREE_CB_LEAF_STOP
;
size_t
rec_off2
=
rec_off2
=
2
+
tsk_getu16
(
hfs
->
fs_info
.
endian
,
cur_key
->
key_len
);
// @@@ NEED TO REPLACE THIS SOMEHOW, but need to figure out the max length
/*
...
...
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