Changeset 69546 in vbox for trunk/src/VBox
- Timestamp:
- Nov 2, 2017 9:44:55 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/winbase.py
r69544 r69546 103 103 except: 104 104 reporter.logXcpt('uPid=%s' % (uPid,)); 105 win32api.CloseHandle(hProcess)105 hProcess.Close(); #win32api.CloseHandle(hProcess) 106 106 return fRc; 107 107 … … 119 119 reporter.logXcpt('uPid=%s' % (uPid,)); 120 120 else: 121 win32api.CloseHandle(hProcess)121 hProcess.Close(); #win32api.CloseHandle(hProcess) 122 122 fRc = True; 123 123 return fRc; … … 187 187 # Dispense with the thread handle. 188 188 try: 189 win32api.CloseHandle(hThread);189 hThread.Close(); # win32api.CloseHandle(hThread); 190 190 except: 191 191 reporter.logXcpt(); … … 203 203 False, 204 204 0); 205 win32api.CloseHandle(hProcess);205 hProcess.Close(); # win32api.CloseHandle(hProcess); 206 206 hProcess = hProcessFullAccess; 207 207 except:
Note:
See TracChangeset
for help on using the changeset viewer.