mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-22 10:56:50 +00:00
Fix tests broken in 7296c6d
7296c6d doesn't do any nil checking, so it segfaults on `==` on `Regex`
This commit is contained in:
@@ -175,7 +175,8 @@ proc `$`*(pattern: RegexMatch): string =
|
||||
|
||||
proc `==`*(a, b: Regex): bool =
|
||||
# name-to-number table is generated at init time, doesn't need to be checked
|
||||
return a.pattern == b.pattern and
|
||||
return not a.isNil and not b.isNil and
|
||||
a.pattern == b.pattern and
|
||||
a.pcreObj == b.pcreObj and
|
||||
a.pcreExtra == b.pcreExtra
|
||||
|
||||
|
||||
Reference in New Issue
Block a user