diff options
Diffstat (limited to 'src/file_pds.c')
-rw-r--r-- | src/file_pds.c | 23 |
1 files changed, 9 insertions, 14 deletions
diff --git a/src/file_pds.c b/src/file_pds.c index bf305f6..aee3231 100644 --- a/src/file_pds.c +++ b/src/file_pds.c @@ -42,25 +42,20 @@ const file_hint_t file_hint_pds= { .register_header_check=®ister_header_check_pds }; -static const unsigned char pds_header[25]= { - 0x0c, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, - 0x04, 0x5b, 'H' , 'E' , 'A' , 'D' , 'E' , 'R' , - 0x5d -}; - static int header_check_pds(const unsigned char *buffer, const unsigned int buffer_size, const unsigned int safe_header_only, const file_recovery_t *file_recovery, file_recovery_t *file_recovery_new) { - if(memcmp(&buffer[0], pds_header, sizeof(pds_header))==0) - { - reset_file_recovery(file_recovery_new); - file_recovery_new->extension=file_hint_pds.extension; - return 1; - } - return 0; + reset_file_recovery(file_recovery_new); + file_recovery_new->extension=file_hint_pds.extension; + return 1; } static void register_header_check_pds(file_stat_t *file_stat) { + static const unsigned char pds_header[25]= { + 0x0c, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, + 0x04, 0x5b, 'H' , 'E' , 'A' , 'D' , 'E' , 'R' , + 0x5d + }; register_header_check(0, pds_header, sizeof(pds_header), &header_check_pds, file_stat); } |