René's URL Explorer Experiment


Title: Segfault: Py_DECREF(NULL) in PyContextVar_Set (context.c:367) · Issue #151773 · python/cpython · GitHub

Open Graph Title: Segfault: Py_DECREF(NULL) in PyContextVar_Set (context.c:367) · Issue #151773 · python/cpython

X Title: Segfault: Py_DECREF(NULL) in PyContextVar_Set (context.c:367) · Issue #151773 · python/cpython

Description: Crash report What happened? Segfault: Py_DECREF(NULL) in PyContextVar_Set (context.c:367) PyContextVar_Set doesn't NULL-check token_new(); under OOM the contextvar_set() error path then Py_DECREFs the NULL token. AI Disclaimer: this gist...

Open Graph Description: Crash report What happened? Segfault: Py_DECREF(NULL) in PyContextVar_Set (context.c:367) PyContextVar_Set doesn't NULL-check token_new(); under OOM the contextvar_set() error path then Py_DECREFs ...

X Description: Crash report What happened? Segfault: Py_DECREF(NULL) in PyContextVar_Set (context.c:367) PyContextVar_Set doesn't NULL-check token_new(); under OOM the contextvar_set() error path then Py_DECR...

Opengraph URL: https://github.com/python/cpython/issues/151773

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Segfault: Py_DECREF(NULL) in PyContextVar_Set (context.c:367)","articleBody":"# Crash report\n\n### What happened?\n\n# Segfault: `Py_DECREF(NULL)` in `PyContextVar_Set` (`context.c:367`)\n\n*`PyContextVar_Set` doesn't NULL-check `token_new()`; under OOM the `contextvar_set()` error path then `Py_DECREF`s the NULL token.*\n\n_AI Disclaimer: this gist was drafted by Claude Code, which also generated the reduced reproducer._\n\n## Crash report\n\n`PyContextVar_Set` does not NULL-check the result of `token_new()`. Under memory pressure `token_new()` returns NULL; if the following `contextvar_set()` also fails, the error path runs `Py_DECREF(tok)` on the NULL token and segfaults.\n\n## Reproducer\n\n```python\nimport contextvars\nfrom _testcapi import set_nomemory, remove_mem_hooks\ncv = contextvars.ContextVar(\"x\")\nfor start in range(16):            # crashes at start=2\n    set_nomemory(start, 0)\n    try:\n        try:\n            cv.set(object())\n        finally:\n            remove_mem_hooks()\n    except MemoryError:\n        pass\n```\n\nA single `set_nomemory(0, 0); cv.set(object())` does *not* crash — `PyContextVar_Set`'s own early `context_get()` fails first and returns cleanly. The crash needs a budget where the early allocations succeed but `token_new()` and `contextvar_set()` then fail, hence the short sweep.\n\n## Backtrace\n\n```\n#0 _Py_atomic_load_uint32_relaxed\n#1 Py_DECREF              Include/refcount.h:345    (op == 0x0)\n#2 PyContextVar_Set       Python/context.c:367      (Py_DECREF(tok), tok == NULL)\n```\n\n## Root cause\n\n`Python/context.c`, `PyContextVar_Set` (L346):\n\n```c\n    PyContextToken *tok = token_new(ctx, var, old_val);  /* L363: may return NULL, UNCHECKED */\n    Py_XDECREF(old_val);\n    if (contextvar_set(var, val)) {                      /* L366: fails under OOM (_PyHamt_Assoc -\u003e NULL) */\n        Py_DECREF(tok);                                  /* L367: tok == NULL -\u003e SIGSEGV */\n        return NULL;\n    }\n    return (PyObject *)tok;\n```\n\n`token_new()` allocates (`PyObject_GC_New`) and can return NULL on failure, but `tok` is not checked before the `Py_DECREF(tok)` on the `contextvar_set()` failure path. (On the success path the function also returns `tok` unchecked — harmless NULL-with-exception, but the modification still happened.)\n\n## Suggested fix\n\n```c\n    PyContextToken *tok = token_new(ctx, var, old_val);\n    Py_XDECREF(old_val);\n    if (tok == NULL) {\n        return NULL;\n    }\n```\n\n(or `Py_XDECREF(tok)` on the error path).\n\n## Notes\n\nFound by OOM-injection fuzzing (`set_nomemory`). Same pattern as gh-146080 (`Py_DECREF(NULL)` in an `_ssl.c` error label). **Not** free-threading-specific: reproduces on free-threaded and default (GIL) builds, debug and release. (A `_py_warnings`/`ContextVar` vehicle reaches this only when `context_aware_warnings` is enabled — the default on free-threaded builds — but the C bug is build-agnostic.)\n\n## Versions\n\n- main (3.16.0a0); reproduced on free-threaded debug+ASan, free-threaded release, and GIL release builds.\n\n---\n\n*Part of [python/cpython#151763](https://github.com/python/cpython/issues/151763) — an umbrella tracking 35 OOM-related crash findings.*\n\n### CPython versions tested on:\n\n3.16, CPython main branch\n\n### Operating systems tested on:\n\nWindows\n\n### Output from running 'python -VV' on the command line:\n\nPython 3.9.23 (main, Jun  4 2025, 08:55:39) [GCC 13.3.0]\n\n\u003c!-- gh-linked-prs --\u003e\n### Linked PRs\n* gh-151836\n* gh-152009\n* gh-152010\n* gh-152011\n\u003c!-- /gh-linked-prs --\u003e\n","author":{"url":"https://github.com/prakashsellathurai","@type":"Person","name":"prakashsellathurai"},"datePublished":"2026-06-20T08:00:25.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":3},"url":"https://github.com/151773/cpython/issues/151773"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:c56f9531-8503-44d3-fce1-8cf46d2cab70
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idCBBA:F01E1:E7AAE7:13442CF:6A541187
html-safe-noncea3d7e889454e995e6931533e9cfabdb1da3219a8bba604c00da83ae492bd3f00
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDQkJBOkYwMUUxOkU3QUFFNzoxMzQ0MkNGOjZBNTQxMTg3IiwidmlzaXRvcl9pZCI6IjQ3ODI5NDgwMDAwNTMwNzIyNjMiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac0c9ef76281623e524e93bdb0b1c8a0aea6978bfd4593926c9369960dc39dab6e
hovercard-subject-tagissue:4705646896
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/python/cpython/151773/issue_layout
twitter:imagehttps://opengraph.githubassets.com/dda04ea13466167f66794d2def62651ed34f8f4f5e871ce26a076fa7e7b5ae9b/python/cpython/issues/151773
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/dda04ea13466167f66794d2def62651ed34f8f4f5e871ce26a076fa7e7b5ae9b/python/cpython/issues/151773
og:image:altCrash report What happened? Segfault: Py_DECREF(NULL) in PyContextVar_Set (context.c:367) PyContextVar_Set doesn't NULL-check token_new(); under OOM the contextvar_set() error path then Py_DECREFs ...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameprakashsellathurai
hostnamegithub.com
expected-hostnamegithub.com
Noneb9a586c06a05a7a86fc7e3f4dbd03e42f6869085879aa184aa6369456dbd50fb
turbo-cache-controlno-preview
go-importgithub.com/python/cpython git https://github.com/python/cpython.git
octolytics-dimension-user_id1525981
octolytics-dimension-user_loginpython
octolytics-dimension-repository_id81598961
octolytics-dimension-repository_nwopython/cpython
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id81598961
octolytics-dimension-repository_network_root_nwopython/cpython
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release07a982c1d40157c619b364352b704c3ce66bb332
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/python/cpython/issues/151773#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython%2Fcpython%2Fissues%2F151773
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython%2Fcpython%2Fissues%2F151773
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=python%2Fcpython
Reloadhttps://github.com/python/cpython/issues/151773
Reloadhttps://github.com/python/cpython/issues/151773
Reloadhttps://github.com/python/cpython/issues/151773
Please reload this pagehttps://github.com/python/cpython/issues/151773
python https://github.com/python
cpythonhttps://github.com/python/cpython
Please reload this pagehttps://github.com/python/cpython/issues/151773
Notifications https://github.com/login?return_to=%2Fpython%2Fcpython
Fork 35k https://github.com/login?return_to=%2Fpython%2Fcpython
Star 73.8k https://github.com/login?return_to=%2Fpython%2Fcpython
Code https://github.com/python/cpython
Issues 5k+ https://github.com/python/cpython/issues
Pull requests 2.3k https://github.com/python/cpython/pulls
Actions https://github.com/python/cpython/actions
Projects https://github.com/python/cpython/projects
Security and quality 0 https://github.com/python/cpython/security
Insights https://github.com/python/cpython/pulse
Code https://github.com/python/cpython
Issues https://github.com/python/cpython/issues
Pull requests https://github.com/python/cpython/pulls
Actions https://github.com/python/cpython/actions
Projects https://github.com/python/cpython/projects
Security and quality https://github.com/python/cpython/security
Insights https://github.com/python/cpython/pulse
#151836https://github.com/python/cpython/pull/151836
Segfault: Py_DECREF(NULL) in PyContextVar_Set (context.c:367)https://github.com/python/cpython/issues/151773#top
#151836https://github.com/python/cpython/pull/151836
interpreter-core(Objects, Python, Grammar, and Parser dirs)https://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22interpreter-core%22
type-crashA hard crash of the interpreter, possibly with a core dumphttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22type-crash%22
https://github.com/prakashsellathurai
prakashsellathuraihttps://github.com/prakashsellathurai
on Jun 20, 2026https://github.com/python/cpython/issues/151773#issue-4705646896
gh-146080https://github.com/python/cpython/issues/146080
python/cpython#151763https://github.com/python/cpython/issues/151763
gh-151773: NULL-check token_new() in PyContextVar_Set #151836https://github.com/python/cpython/pull/151836
[3.15] gh-151773: Fix NULL dereference in PyContextVar_Set (GH-151836) #152009https://github.com/python/cpython/pull/152009
[3.14] gh-151773: Fix NULL dereference in PyContextVar_Set (GH-151836) #152010https://github.com/python/cpython/pull/152010
[3.13] gh-151773: Fix NULL dereference in PyContextVar_Set (GH-151836) #152011https://github.com/python/cpython/pull/152011
interpreter-core(Objects, Python, Grammar, and Parser dirs)https://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22interpreter-core%22
type-crashA hard crash of the interpreter, possibly with a core dumphttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22type-crash%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.