about summary refs log tree commit diff
path: root/afl-dyninst.cpp
diff options
context:
space:
mode:
authorea <ea@users.noreply.github.com>2016-06-01 23:44:44 +0200
committerea <ea@users.noreply.github.com>2016-06-01 23:44:44 +0200
commit5c5c9df6f8fb66da7a72591e07194469dbfb3a6f (patch)
treef54a3b1ae62ccd837cbfcc7082d7d23dec2af059 /afl-dyninst.cpp
parentc4ec73924f98c8de2eff723715ac38b7c49ce34b (diff)
downloadafl-dyninst-5c5c9df6f8fb66da7a72591e07194469dbfb3a6f.tar.gz
removed superfluo superfluous lines
Diffstat (limited to 'afl-dyninst.cpp')
-rw-r--r--afl-dyninst.cpp2
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) {