Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix refleak in Objects/unicodeobject.c
  • Loading branch information
eendebakpt committed Mar 6, 2026
commit de71a747f7bf777ff98b3c4aacc456d014231cfc
2 changes: 1 addition & 1 deletion Objects/unicodeobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -5220,7 +5220,7 @@ unicode_decode_utf8_impl(_PyUnicodeWriter *writer,
}

if (_PyUnicodeWriter_Prepare(writer, end - s, 127) < 0) {
return -1;
goto onError;
}
}
}
Expand Down
Loading