1
0
mirror of https://github.com/django/django.git synced 2025-04-05 14:06:42 +00:00

[4.2.x] Refs #36098 -- Fixed validate_ipv4_address() crash for non-string values.

Regression in ca2be7724e1244a4cb723de40a070f873c6e94bf.
This commit is contained in:
Sarah Boyce 2025-01-16 20:01:11 +01:00 committed by GitHub
parent 043dfadbce
commit 57b0229421
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -272,6 +272,8 @@ validate_unicode_slug = RegexValidator(
def validate_ipv4_address(value):
if isinstance(value, ipaddress.IPv4Address):
return
try:
ipaddress.IPv4Address(value)
except ValueError: