[bugfix] avoid name conflicts

This commit is contained in:
AloneMonkey 2018-02-02 21:42:51 +08:00
parent 42ff6d12b8
commit e521ddbb40
1 changed files with 1 additions and 1 deletions

View File

@ -207,7 +207,7 @@ function dumpModule(name) {
var modbase = modules[i].base; var modbase = modules[i].base;
var modsize = modules[i].size; var modsize = modules[i].size;
var newmodname = modules[i].name; var newmodname = modules[i].name;
var newmodpath = getDocumentDir() + "/" + newmodname; var newmodpath = getDocumentDir() + "/" + newmodname + ".fid";
var oldmodpath = modules[i].path; var oldmodpath = modules[i].path;