Skip to content

Commit

Permalink
Port ultrajson/ultrajson#519 (Fix buffer overflows)
Browse files Browse the repository at this point in the history
Port fixes and unit tests from ultrajson/ultrajson#519 to fix buffer
overflows (CVE-2021-45958)
  • Loading branch information
adrianeboyd committed Jul 18, 2023
1 parent dc529e9 commit dc85aa0
Show file tree
Hide file tree
Showing 6 changed files with 961 additions and 41 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
@@ -1,4 +1,4 @@
recursive-include srsly *.h *.cc *.c *.pyx *.pxd
recursive-include srsly *.h *.cc *.c *.pyx *.pxd *.json
include LICENSE
include README.md
recursive-exclude srsly *.cpp
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -11,7 +11,7 @@
from Cython.Build import cythonize


PACKAGE_DATA = {"": ["*.pyx", "*.pxd", "*.c", "*.h"]}
PACKAGE_DATA = {"": ["*.pyx", "*.pxd", "*.c", "*.h", "*.json"]}


PACKAGES = find_packages()
Expand Down

0 comments on commit dc85aa0

Please sign in to comment.