- Timestamp:
- May 23, 2003, 3:53:43 PM (22 years ago)
- Location:
- trunk/src/kernel32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/HandleManager.cpp
r10073 r10109 1 /* $Id: HandleManager.cpp,v 1.10 2 2003-05-06 12:06:07sandervl Exp $ */1 /* $Id: HandleManager.cpp,v 1.103 2003-05-23 13:53:42 sandervl Exp $ */ 2 2 3 3 /* … … 3564 3564 } 3565 3565 3566 if( IsBadWritePtr(lpdwErrors,sizeof(DWORD)) ||3566 if((lpdwErrors != NULL && IsBadWritePtr(lpdwErrors,sizeof(DWORD))) || 3567 3567 (NULL!=lpcst && IsBadWritePtr(lpcst,sizeof(COMSTAT)) ) ) 3568 3568 { -
trunk/src/kernel32/hmcomm.cpp
r9079 r10109 1 /* $Id: hmcomm.cpp,v 1.3 8 2002-08-21 17:23:12sandervl Exp $ */1 /* $Id: hmcomm.cpp,v 1.39 2003-05-23 13:53:43 sandervl Exp $ */ 2 2 3 3 /* … … 888 888 { 889 889 APIRET rc; 890 ULONG ulLen ;890 ULONG ulLen, dwError = 0; 891 891 USHORT COMErr; 892 893 if(lpdwErrors == NULL) 894 lpdwErrors = &dwError; 892 895 893 896 dprintf(("HMDeviceCommClass::ClearCommError"));
Note:
See TracChangeset
for help on using the changeset viewer.