diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2015-01-26 21:37:49 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2015-01-26 21:37:49 (GMT) |
commit | 262c95e0b088a56e9fd919edc57ad19f85e2e40e (patch) | |
tree | 8510a15924423abb3208610f724d911f2f79b9a6 /src/format | |
parent | 0993276d6450919c6d178182c5fd26497b62d5fc (diff) |
Begun to rewrite the whole plugins system.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@461 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/format')
-rw-r--r-- | src/format/format.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/format/format.c b/src/format/format.c index 8e1b9f4..e710668 100644 --- a/src/format/format.c +++ b/src/format/format.c @@ -519,14 +519,15 @@ GBinFormat *load_new_format(FormatType type, const char *filename, bin_t **conte tmp = strdup(filename); - pglist = get_all_plugins_for_action(PGA_FORMAT_MATCHER, &pgcount); + pgcount = 0; + pglist = NULL;//get_all_plugins_for_action(PGA_FORMAT_MATCHER, &pgcount); if (pgcount > 0) { lnf_rescan: for (i = 0; i < pgcount; i++) - switch (g_plugin_module_is_matching(pglist[i], &tmp, content, length)) + switch (0/*g_plugin_module_is_matching(pglist[i], &tmp, content, length)*/) { case MFA_MATCHED: /* FIXME */ |