mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
regex: Add nullptr check in _regex_free, needed with PCRE2 10.42
Fixes #76174.
(cherry picked from commit 290db4a0b6)
This commit is contained in:
parent
8c1a8d4396
commit
4044b19100
1 changed files with 3 additions and 1 deletions
|
|
@ -40,7 +40,9 @@ static void *_regex_malloc(PCRE2_SIZE size, void *user) {
|
|||
}
|
||||
|
||||
static void _regex_free(void *ptr, void *user) {
|
||||
memfree(ptr);
|
||||
if (ptr) {
|
||||
memfree(ptr);
|
||||
}
|
||||
}
|
||||
|
||||
int RegExMatch::_find(const Variant &p_name) const {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue