You are using an out of date browser. It may not display this or other websites correctly. You should upgrade or use an alternative browser.
reference counting
About this tag
Reference counting is a memory management technique used in operating system kernels and software libraries to track how many references point to a resource, such as an object or data structure. On WindowsForum, discussions about reference counting often arise in the context of Linux kernel vulnerabilities, where failing to properly increment or decrement reference counts can lead to use-after-free bugs or resource leaks. For example, CVE-2026-45997 involves a SCSI disk error path that failed to release a gendisk reference, while CVE-2024-50028 concerns a thermal zone use-after-free fixed by proper device reference handling. These topics are relevant to Windows users running Linux in servers, WSL, or mixed environments. Reference counting also appears in C++ STL internals, where it underpins smart pointers and resource management.
CVE-2026-45997 is a Linux kernel storage-driver vulnerability published by NVD on May 27, 2026, after kernel.org assigned a CVE to a fixed SCSI disk error path that failed to release a gendisk reference when device registration failed. The bug is not the kind of headline-grabbing...
Linux kernel maintainers have fixed a race-condition in the thermal subsystem that could let a thermal zone object be accessed after it was freed — a defect tracked as CVE-2024-50028 that carries a medium severity rating and is remedied by making thermal_zone_get_by_id take and return a proper...
Help would be appreciated in determining the cause of my BSOD. I have done as much as I can by reading help forums, and I got as far as running the minidump file in Windows Debugger..
I have attached the dmp file
Link Removed due to 404 Error
Microsoft (R) Windows Debugger Version...
As promised, the great Stephan T. Lavavej is back! Link Removed Tens of thousands of you have watched STL's (those are his initials, so that's what we call him) Link Removed, or Standard Template Library. If you haven't, you should. This series, Advanced STL, will cover the gory details of the...