Skip to content
Snippets Groups Projects
Commit e249c5aa authored by Brian Carrier's avatar Brian Carrier
Browse files

Patch for 2786963 for NTFS infinite loop.

parent 7e63a47f
No related branches found
No related tags found
No related merge requests found
......@@ -94,6 +94,9 @@ for split image files. Patch by Christopher Siwy.
5/3/09: Update: Abstracted name comparison to file system-specific function.
5/4/09: Bug Fix: NTFS compression infinite loop fix by Jamie Butler.
Bug 2786963)
---------------- VERSION 3.0.0 --------------
0/00/00: Update: Many, many, many API changes.
......
......@@ -1508,6 +1508,14 @@ ntfs_file_read_special(const TSK_FS_ATTR * a_fs_attr,
else {
cpylen = a_len - buf_idx;
}
// Make sure not to return more bytes than are in the file
if (cpylen >
(a_fs_attr->fs_file->meta->size - (a_offset +
buf_idx)))
cpylen =
(a_fs_attr->fs_file->meta->size - (a_offset +
buf_idx));
memcpy(&a_buf[buf_idx], &comp.uncomp_buf[byteoffset],
cpylen);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment