##// END OF EJS Templates
Fixed segfault.
Jeandet Alexis -
r10:76535b5137d7 default
parent child
Show More
@@ -33,6 +33,7 ElfFile::ElfFile()
33 this->type_elf = false;
33 this->type_elf = false;
34 this->elfFile = (int)NULL;
34 this->elfFile = (int)NULL;
35 this->e = NULL;
35 this->e = NULL;
36 this->data = NULL;
36 }
37 }
37
38
38 ElfFile::ElfFile(const QString &File)
39 ElfFile::ElfFile(const QString &File)
@@ -43,6 +44,7 ElfFile::ElfFile(const QString &File)
43 this->elfFile = (int)NULL;
44 this->elfFile = (int)NULL;
44 this->e = NULL;
45 this->e = NULL;
45 this->p_fileName = File;
46 this->p_fileName = File;
47 this->data = NULL;
46 openFile(File);
48 openFile(File);
47 }
49 }
48
50
General Comments 0
You need to be logged in to leave comments. Login now