| 400 | } |
| 401 | |
| 402 | TSReturnCode |
| 403 | sdk_sanity_check_mbuffer(TSMBuffer bufp) |
| 404 | { |
| 405 | HdrHeapSDKHandle *handle = reinterpret_cast<HdrHeapSDKHandle *>(bufp); |
| 406 | if ((handle == nullptr) || (handle->m_heap == nullptr) || (handle->m_heap->m_magic != HDR_BUF_MAGIC_ALIVE)) { |
| 407 | return TS_ERROR; |
| 408 | } |
| 409 | |
| 410 | return TS_SUCCESS; |
| 411 | } |
| 412 | |
| 413 | TSReturnCode |
| 414 | sdk_sanity_check_mime_hdr_handle(TSMLoc field) |
no outgoing calls
no test coverage detected