Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions checks/check_fli_oob.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python3
from __future__ import annotations

from PIL import Image
Expand Down
1 change: 1 addition & 0 deletions checks/check_fli_overflow.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python3
from __future__ import annotations

from PIL import Image
Expand Down
1 change: 1 addition & 0 deletions checks/check_icns_dos.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python3
# Tests potential DOS of IcnsImagePlugin with 0 length block.
# Run from anywhere that PIL is importable.
from __future__ import annotations
Expand Down
1 change: 1 addition & 0 deletions checks/check_j2k_dos.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python3
# Tests potential DOS of Jpeg2kImagePlugin with 0 length block.
# Run from anywhere that PIL is importable.
from __future__ import annotations
Expand Down
1 change: 1 addition & 0 deletions checks/check_j2k_leaks.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python3
from __future__ import annotations

import sys
Expand Down
1 change: 1 addition & 0 deletions checks/check_j2k_overflow.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python3
from __future__ import annotations

from pathlib import Path
Expand Down
1 change: 1 addition & 0 deletions checks/check_jp2_overflow.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python3
# Reproductions/tests for OOB read errors in FliDecode.c

# When run in python, all of these images should fail for
Expand Down
1 change: 1 addition & 0 deletions checks/check_jpeg_leaks.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python3
from __future__ import annotations

import sys
Expand Down
1 change: 1 addition & 0 deletions checks/check_large_memory.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python3
from __future__ import annotations

import sys
Expand Down
1 change: 1 addition & 0 deletions checks/check_large_memory_numpy.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python3
from __future__ import annotations

import sys
Expand Down
1 change: 1 addition & 0 deletions checks/check_libtiff_segfault.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python3
from __future__ import annotations

import pytest
Expand Down
1 change: 1 addition & 0 deletions checks/check_png_dos.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python3
from __future__ import annotations

import zlib
Expand Down
1 change: 1 addition & 0 deletions checks/check_release_notes.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python3
from __future__ import annotations

import sys
Expand Down
1 change: 1 addition & 0 deletions checks/check_wheel.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python3
from __future__ import annotations

import platform
Expand Down
Loading