Changeset 3541 for trunk/kStuff/kDbg/kDbgSymbol.cpp
- Timestamp:
- Aug 25, 2007, 5:46:14 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kStuff/kDbg/kDbgSymbol.cpp
r3537 r3541 56 56 * 57 57 * @returns 0 on success. 58 * @returns K DBG_ERR_INVALID_POINTER if a NULL pointer or an !KDBG_VALID_PTR() is passed in.58 * @returns KERR_INVALID_POINTER if a NULL pointer or an !KDBG_VALID_PTR() is passed in. 59 59 * 60 60 * @param pSymbol The symbol to be freed. … … 63 63 { 64 64 if (!pSymbol) 65 return K DBG_ERR_INVALID_POINTER;66 kDbgAssertPtrReturn(pSymbol, K DBG_ERR_INVALID_POINTER);65 return KERR_INVALID_POINTER; 66 kDbgAssertPtrReturn(pSymbol, KERR_INVALID_POINTER); 67 67 68 68 kDbgHlpFree(pSymbol);
Note:
See TracChangeset
for help on using the changeset viewer.