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