diff options
author | ea <ea@users.noreply.github.com> | 2016-06-01 23:44:44 +0200 |
---|---|---|
committer | ea <ea@users.noreply.github.com> | 2016-06-01 23:44:44 +0200 |
commit | 5c5c9df6f8fb66da7a72591e07194469dbfb3a6f (patch) | |
tree | f54a3b1ae62ccd837cbfcc7082d7d23dec2af059 | |
parent | c4ec73924f98c8de2eff723715ac38b7c49ce34b (diff) | |
download | afl-dyninst-5c5c9df6f8fb66da7a72591e07194469dbfb3a6f.tar.gz |
removed superfluo superfluous lines
-rw-r--r-- | afl-dyninst.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/afl-dyninst.cpp b/afl-dyninst.cpp index aa45741..4581f13 100644 --- a/afl-dyninst.cpp +++ b/afl-dyninst.cpp @@ -347,14 +347,12 @@ int main (int argc, char **argv) set<string>::iterator rtLibIter ; for(rtLibIter = runtimeLibraries.begin(); rtLibIter != runtimeLibraries.end(); rtLibIter++) { BPatch_binaryEdit *libBin = bpatch.openBinary ((*rtLibIter).c_str(), false); - printf("I sad otvara %s\n",(*rtLibIter).c_str()); if (libBin == NULL) { cerr << "Failed to open binary "<< *rtLibIter << endl; return EXIT_FAILURE; } BPatch_image *libImg = libBin->getImage (); vector < BPatch_module * >*modules = libImg->getModules (); - libBin->loadLibrary (instLibrary); moduleIter = modules->begin (); for ( ; moduleIter != modules->end (); ++moduleIter) { |