Previous Next

IoFreeErrorLogEntry

The IoFreeErrorLogEntry routine frees an unused error log entry.

VOID
IoFreeErrorLogEntry(
    PVOID  ElEntry
    );

Parameters

ElEntry
Pointer to an error log packet allocated by IoAllocateErrorLogEntry.

Return Value

None

Headers

Declared in wdm.h and ntddk.h. Include wdm.h or ntddk.h.

Comments

This routine is available on Windows XP and later.

Drivers use IoFreeErrorLogEntry to free an error log entry allocated by IoAllocateErrorLogEntry. IoWriteErrorLogEntry also frees any error log entries passed to it, so drivers must not call both on the same log entry.

See Also

IO_ERROR_LOG_PACKET, IoAllocateErrorLogEntry, IoWriteErrorLogEntry