- Timestamp:
- Jul 7, 2001, 6:39:57 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/ldr/myldrCheckInternalName.cpp
r6188 r6193 1 /* $Id: myldrCheckInternalName.cpp,v 1. 4 2001-07-06 19:22:35bird Exp $1 /* $Id: myldrCheckInternalName.cpp,v 1.5 2001-07-07 04:39:57 bird Exp $ 2 2 * 3 3 * ldrCheckInternalName - ldrCheckInternalName replacement with support for … … 66 66 #ifdef DEBUG 67 67 APIRET rc = ldrCheckInternalName(pMTE); 68 kprintf((" ldrCheckInternalName: pMTE=0x%08x intname=%.*s path=%s rc=%d (original)\n",68 kprintf(("myldrCheckInternalName: pMTE=0x%08x intname=%.*s path=%s rc=%d\n", /* (original)\",*/ 69 69 pMTE, *(PCHAR)pMTE->mte_swapmte->smte_restab, (PCHAR)pMTE->mte_swapmte->smte_restab + 1, ldrpFileNameBuf, rc)); 70 70 return rc; … … 105 105 if ( (cchName > 8 && *pachResName > 8) 106 106 || ( (pMTE->mte_flags1 & CLASS_MASK) == CLASS_GLOBAL 107 && (cchExt != 3 || strcmp(pachExt, "DLL")) /* Extention != DLL. */107 && (cchExt != 3 || memcmp(pachExt, "DLL", 3)) /* Extention != DLL. */ 108 108 ) 109 109 )
Note:
See TracChangeset
for help on using the changeset viewer.