diff options
author | Christophe Grenier <[email protected]> | 2014-10-05 21:10:05 +0200 |
---|---|---|
committer | Christophe Grenier <[email protected]> | 2014-10-05 21:10:05 +0200 |
commit | f83141b780f3d6ea62501f7ab1d38ce00d2b9cf2 (patch) | |
tree | 1ca518cfd635ce4dccb7f8380255169963c58854 /src/file_ext2.c | |
parent | 0ecfeb2d7a2d2a4b5bb315fdd2b3303d300def78 (diff) |
PhotoRec: remove useless file_recovery NULL check
Diffstat (limited to 'src/file_ext2.c')
-rw-r--r-- | src/file_ext2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/file_ext2.c b/src/file_ext2.c index 41506b17..93522fe7 100644 --- a/src/file_ext2.c +++ b/src/file_ext2.c @@ -60,7 +60,7 @@ static int header_check_ext2_fs(const unsigned char *buffer, const unsigned int return 0; if(le16(sb->s_block_group_nr)!=0) return 0; - if(file_recovery!=NULL && file_recovery->file_stat!=NULL && + if(file_recovery->file_stat!=NULL && file_recovery->file_stat->file_hint==&file_hint_ext2_fs && file_recovery->calculated_file_size==(uint64_t)le32(sb->s_blocks_count)*(EXT2_MIN_BLOCK_SIZE<<le32(sb->s_log_block_size))) return 0; |