Skip to content

Commit

Permalink
pythongh-126461: Fix _Unpickler_ReadFromFile() error handling (python…
Browse files Browse the repository at this point in the history
…#126485)

Handle _Unpickler_SetStringInput() failure.
  • Loading branch information
vstinner authored Nov 6, 2024
1 parent 9cba47d commit a1c57bc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Modules/_pickle.c
Original file line number Diff line number Diff line change
Expand Up @@ -1288,6 +1288,10 @@ _Unpickler_ReadFromFile(UnpicklerObject *self, Py_ssize_t n)
else {
read_size = _Unpickler_SetStringInput(self, data);
Py_DECREF(data);
if (read_size < 0) {
return -1;
}

self->prefetched_idx = 0;
if (n <= read_size)
return n;
Expand Down

0 comments on commit a1c57bc

Please sign in to comment.