File tree 2 files changed +2
-5
lines changed
src/AspNetCoreModuleV2/InProcessRequestHandler
2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,6 @@ IN_PROCESS_APPLICATION::IN_PROCESS_APPLICATION(
44
44
45
45
IN_PROCESS_APPLICATION::~IN_PROCESS_APPLICATION ()
46
46
{
47
- m_hThread = NULL ;
48
47
s_Application = NULL ;
49
48
}
50
49
@@ -190,8 +189,6 @@ IN_PROCESS_APPLICATION::ShutDownInternal()
190
189
}
191
190
}
192
191
193
- CloseHandle (m_hThread);
194
- m_hThread = NULL ;
195
192
s_Application = NULL ;
196
193
}
197
194
Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ class IN_PROCESS_APPLICATION : public InProcessApplicationBase
121
121
};
122
122
123
123
// Thread executing the .NET Core process
124
- HANDLE m_hThread;
124
+ HandleWrapper<InvalidHandleTraits> m_hThread;
125
125
126
126
// The request handler callback from managed code
127
127
PFN_REQUEST_HANDLER m_RequestHandler;
@@ -134,7 +134,7 @@ class IN_PROCESS_APPLICATION : public InProcessApplicationBase
134
134
PFN_ASYNC_COMPLETION_HANDLER m_AsyncCompletionHandler;
135
135
136
136
// The event that gets triggered when managed initialization is complete
137
- HANDLE m_pInitalizeEvent;
137
+ HandleWrapper<InvalidHandleTraits> m_pInitalizeEvent;
138
138
139
139
STRU m_struExeLocation;
140
140
You can’t perform that action at this time.
0 commit comments