diff options
Diffstat (limited to 'src/format')
-rw-r--r-- | src/format/format.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/format/format.c b/src/format/format.c index f1ea4d4..c7d95c4 100644 --- a/src/format/format.c +++ b/src/format/format.c @@ -510,10 +510,6 @@ GBinFormat *load_new_format(FormatType type, char *filename, bin_t **content, of result = NULL; - printf("analysing... %s\n", filename); - - - tmp = strdup(filename); pglist = get_all_plugins_for_action(PGA_FORMAT_MATCHER, &pgcount); @@ -545,9 +541,6 @@ GBinFormat *load_new_format(FormatType type, char *filename, bin_t **content, of if (tmp == NULL) free(tmp); - - - for (i = 0; i < FID_COUNT && result == NULL; i++) if (_formats[i].type == type && _formats[i].match(type, *content, *length)) { @@ -557,12 +550,6 @@ GBinFormat *load_new_format(FormatType type, char *filename, bin_t **content, of } - - - printf("FINAL FORMAT :: %p\n", result); - - //exit(0); - return result; } |