summaryrefslogtreecommitdiffstats
path: root/src/PEImage.cpp
diff options
context:
space:
mode:
authorsagitario <sagitario@fc51e93f-b9fe-4711-8d8d-3ae870c5f7d8>2014-02-25 23:00:44 (GMT)
committersagitario <sagitario@fc51e93f-b9fe-4711-8d8d-3ae870c5f7d8>2014-02-25 23:00:44 (GMT)
commitcd3bafbc9a4d0fe3b5f7d9338d18c27d25bcf43c (patch)
tree34f59bbd6d826f157289aa938b952ce6ce7cd459 /src/PEImage.cpp
parent5e35f20a3fe21c9ea6a79738819ead8328855b9b (diff)
downloadcv2pdb-cd3bafbc9a4d0fe3b5f7d9338d18c27d25bcf43c.zip
cv2pdb-cd3bafbc9a4d0fe3b5f7d9338d18c27d25bcf43c.tar.gz
cv2pdb-cd3bafbc9a4d0fe3b5f7d9338d18c27d25bcf43c.tar.bz2
Version 0.30: fixed crash when converting DWARF for executables without .reloc segment
Diffstat (limited to 'src/PEImage.cpp')
-rw-r--r--src/PEImage.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/PEImage.cpp b/src/PEImage.cpp
index 5f3a79b..0f7608c 100644
--- a/src/PEImage.cpp
+++ b/src/PEImage.cpp
@@ -45,6 +45,8 @@ PEImage::PEImage(const TCHAR* iname)
, debug_loc(0)
, debug_ranges(0)
, codeSegment(0)
+, reloc(0)
+, reloc_length(0)
{
if(iname)
load(iname);