diff options
Diffstat (limited to 'src/file_asm.c')
-rw-r--r-- | src/file_asm.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/file_asm.c b/src/file_asm.c index 9074a627..03e9a0b3 100644 --- a/src/file_asm.c +++ b/src/file_asm.c @@ -71,7 +71,5 @@ static void file_check_asm(file_recovery_t *file_recovery) const unsigned char asm_footer[11]= { '#', 'E', 'N', 'D', '_', 'O', 'F', '_', 'U', 'G', 'C'}; - file_search_footer(file_recovery, asm_footer,sizeof(asm_footer)); - if(file_recovery->file_size>0) - file_recovery->file_size+=12; /* sizeof(asm_footer) + nl*/ + file_search_footer(file_recovery, asm_footer, sizeof(asm_footer), 1); } |