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