File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,21 +14,19 @@ using namespace DynLibUtils;
1414// Input : szModuleName (without extension .dll/.so)
1515// -----------------------------------------------------------------------------
1616template <typename Mutex>
17- CAssemblyModule<Mutex>::CAssemblyModule(const std::string_view szModuleName)
17+ CAssemblyModule<Mutex>::CAssemblyModule(const std::string_view szModuleName) : m_pExecutableSection( nullptr )
1818{
1919 InitFromName (szModuleName);
20- m_pExecutableSection = nullptr ;
2120}
2221
2322// -----------------------------------------------------------------------------
2423// Purpose: constructor
2524// Input : pModuleMemory
2625// -----------------------------------------------------------------------------
2726template <typename Mutex>
28- CAssemblyModule<Mutex>::CAssemblyModule(const CMemory& pModuleMemory)
27+ CAssemblyModule<Mutex>::CAssemblyModule(const CMemory& pModuleMemory) : m_pExecutableSection( nullptr )
2928{
3029 InitFromMemory (pModuleMemory);
31- m_pExecutableSection = nullptr ;
3230}
3331
3432template <typename Mutex>
You can’t perform that action at this time.
0 commit comments