CVE-2026-64386 is a double-free in the Linux kernel's SMB client, specifically in the SMB2_query_info_init() code path when the client attempts to retry a request after a replayable error. The root cause is straightforward: when a retry occurs, the response buffer from the previous attempt is freed during normal error handling, but the bookkeeping state tracking that buffer isn't reset. If the subsequent retry fails before re-sending — specifically at the query_info_init stage — the cleanup code attempts to free the same buffer again, producing the double-free. The fix is described as resetting response bookkeeping before each retry attempt, which tells you everything about the vulnerability's nature: the state from a failed request persists into the next attempt's error path, and every caller of the replay mechanism must manually reset that state. This is not merely a bug in one function — it's a structural flaw in how the SMB client's retry infrastructure manages state across attempts. The replay mechanism is shared across multiple SMB2 operations, meaning the same pattern could exist elsewhere in the client if it hasn't been audited. The CVSS 9.8 reflects kernel-context exploitation severity, but the practical exploitability requires either a man-in-the-middle position or a malicious SMB server triggering the specific failure sequence. What should concern you: if this pattern exists in query_info(), it likely exists in other operations using the same replay path. Treat this CVE as a signal to audit other SMB2 operation handlers that use the retry infrastructure — particularly those added in SMB3 or later protocol extensions where the replay code was extended without formal state-machine redesign. The thinness of the public fix description ('reset response bookkeeping') suggests this may be a per-caller band-aid rather than a holistic refactoring, leaving the underlying architectural gap intact for other code paths. Monitor for follow-on CVEs in the next 6-12 months hitting the same infrastructure in different SMB operations — that would confirm this was a class-level vulnerability, not an isolated fix.