FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[Original HTTPS Page]
Fix crashes found hunting the last open fuzzing record by youknowone · Pull Request #8524 · RustPython/RustPython · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
RustPython
/
RustPython
Public
Notifications
You must be signed in to change notification settings
Fork
1.5k
Star
22.3k
Code
Issues
295
Pull requests
100
Discussions
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Wiki
Security and quality
Insights
Fix crashes found hunting the last open fuzzing record
- #8524
#8524
Merged
youknowone
merged 31 commits into
RustPython:main
RustPython/RustPython:main
from
youknowone:fuzzer-issues
youknowone/RustPython:fuzzer-issues
Copy head branch name to clipboard
Aug 16, 2026
Conversation
Commits
31
(31)
Checks
Files changed
Merged
Fix crashes found hunting the last open fuzzing record
#8524
youknowone
merged 31 commits into
RustPython:main
RustPython/RustPython:main
from
youknowone:fuzzer-issues
youknowone/RustPython:fuzzer-issues
Copy head branch name to clipboard
Commits
Commits on Aug 16, 2026
specialize: check the member descriptor's type before caching its slot offset
Show description for f24691e
youknowone
committed
f24691e
View commit details
Copy full SHA for f24691e
Browse repository at this point
socket: reserve recv()'s buffer fallibly
Show description for 40e67e1
youknowone
committed
40e67e1
View commit details
Copy full SHA for 40e67e1
Browse repository at this point
types: count the __call__ and __get__ slot dispatches as recursion
Show description for 40a839b
youknowone
committed
40a839b
View commit details
Copy full SHA for 40a839b
Browse repository at this point
typevar: show a ParamSpecArgs origin by its repr
Show description for bb744d6
youknowone
committed
bb744d6
View commit details
Copy full SHA for bb744d6
Browse repository at this point
Do not hold a lock across a call back into Python
Show description for 7e4b96e
youknowone
committed
7e4b96e
View commit details
Copy full SHA for 7e4b96e
Browse repository at this point
Validate memoryview.cast() arguments and export negative strides correctly
Show description for 6e47646
youknowone
committed
6e47646
View commit details
Copy full SHA for 6e47646
Browse repository at this point
Charge native recursion to the stack, not to the frame limit
Show description for 2432fd7
youknowone
committed
2432fd7
View commit details
Copy full SHA for 2432fd7
Browse repository at this point
Report a size that cannot be allocated instead of aborting on it
Show description for 02a6193
youknowone
committed
02a6193
View commit details
Copy full SHA for 02a6193
Browse repository at this point
marshal: answer allow_code where a code object is written or read
Show description for ff52fe0
youknowone
committed
ff52fe0
View commit details
Copy full SHA for ff52fe0
Browse repository at this point
Do not lock an object while running code that can reach it
Show description for d7cf971
youknowone
committed
d7cf971
View commit details
Copy full SHA for d7cf971
Browse repository at this point
Stop asserting a pbkdf2 message that depends on the width of a C long
Show description for 61b989b
youknowone
committed
61b989b
View commit details
Copy full SHA for 61b989b
Browse repository at this point
Publish and read the same pointer for a thread's top frame
Show description for c9449a6
youknowone
committed
c9449a6
View commit details
Copy full SHA for c9449a6
Browse repository at this point
Decide stop-the-world parking under the thread registry lock
Show description for ee782e0
youknowone
committed
ee782e0
View commit details
Copy full SHA for ee782e0
Browse repository at this point
Keep an atexit callback alive while it is being compared
Show description for fab2b3b
youknowone
committed
fab2b3b
View commit details
Copy full SHA for fab2b3b
Browse repository at this point
Hold atexit entries in PyRc rather than Arc
Show description for e3dcd8e
youknowone
committed
e3dcd8e
View commit details
Copy full SHA for e3dcd8e
Browse repository at this point
Do not hold a buffer's storage while waiting for a peer
Show description for 773ae23
youknowone
committed
773ae23
View commit details
Copy full SHA for 773ae23
Browse repository at this point
Do not hold a buffer's storage while waiting to hand it over
Show description for 125d5aa
youknowone
committed
125d5aa
View commit details
Copy full SHA for 125d5aa
Browse repository at this point
Check select()'s descriptor limit while the sequence is walked
Show description for 62ed618
youknowone
committed
62ed618
View commit details
Copy full SHA for 62ed618
Browse repository at this point
Bound native recursion where the C stack cannot be measured
Show description for c65fe42
youknowone
committed
c65fe42
View commit details
Copy full SHA for c65fe42
Browse repository at this point
Report the failure to allocate pbkdf2's key and Take.readinto's scratch
Show description for 00b64c3
youknowone
committed
00b64c3
View commit details
Copy full SHA for 00b64c3
Browse repository at this point
Read the frozen-code tuple length as a signed length
Show description for 7c40cb9
youknowone
committed
7c40cb9
View commit details
Copy full SHA for 7c40cb9
Browse repository at this point
Make the snippets from the fuzzer sweep assert what they check
Show description for ce43008
youknowone
committed
ce43008
View commit details
Copy full SHA for ce43008
Browse repository at this point
Ask for a marshal container's room instead of assuming it
Show description for 3d69690
youknowone
committed
3d69690
View commit details
Copy full SHA for 3d69690
Browse repository at this point
Compare the blocking-buffer snippet against something
Show description for 366ef3e
youknowone
committed
366ef3e
View commit details
Copy full SHA for 366ef3e
Browse repository at this point
Refuse array.frombytes() a source whose items are not bytes
Show description for ab0d4ff
youknowone
committed
ab0d4ff
View commit details
Copy full SHA for ab0d4ff
Browse repository at this point
Tell apart the ways marshal data can be bad
Show description for 7fad3b0
youknowone
committed
7fad3b0
View commit details
Copy full SHA for 7fad3b0
Browse repository at this point
Hash the collector's tables by address rather than by SipHash
Show description for a7f7021
youknowone
committed
a7f7021
View commit details
Copy full SHA for a7f7021
Browse repository at this point
Keep the collection's candidates and their counts in one table
Show description for 691d6ca
youknowone
committed
691d6ca
View commit details
Copy full SHA for 691d6ca
Browse repository at this point
gc: collect referents into one buffer instead of a vector per object
Show description for 3139b95
youknowone
committed
3139b95
View commit details
Copy full SHA for 3139b95
Browse repository at this point
memoryview and struct: match the checks and errors of the reference
Show description for dce42a3
youknowone
committed
dce42a3
View commit details
Copy full SHA for dce42a3
Browse repository at this point
io: decide the readinto path by file type, not by seekability
Show description for 5a5ba17
youknowone
committed
5a5ba17
View commit details
Copy full SHA for 5a5ba17
Browse repository at this point
Back
|
FazBrowse Home
|
New Git URL