CVE-2026-45812: Incorrect Pointer Sizeof Offsetcve-2026-45812-incorrect-pointer-sizeof-offset
A pointer's size is incorrectly used instead of the pointed-to structure's size when advancing a buffer offset. This leads to incorrect buffer size calculation, allowing out-of-bounds reads or buffer overflows. Use sizeof(*pointer) instead of sizeof(pointer).