src: initialize some fields to suppress harmless valgrind errors

This commit is contained in:
Markus F.X.J. Oberhumer
2024-04-24 12:36:22 +02:00
parent 6db0af8d04
commit c69b4561fb
16 changed files with 124 additions and 103 deletions
+2 -2
View File
@@ -579,7 +579,7 @@ protected:
ddirs_t ddirs[16];
};
pe_header_t ih, oh;
pe_header_t ih = {}, oh = {};
};
class PeFile64 : public PeFile {
@@ -640,7 +640,7 @@ protected:
ddirs_t ddirs[16];
};
pe_header_t ih, oh;
pe_header_t ih = {}, oh = {};
};
/* vim:set ts=4 sw=4 et: */