mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-24 04:56:14 +01:00
regex: Handle PCRE_ERROR_RECURSIONLOOP
Was missing from the error conversion routine.
This commit is contained in:
parent
7e5615138a
commit
6d5484b296
@ -236,6 +236,8 @@ match_error (gint errcode)
|
||||
return _("bad offset");
|
||||
case PCRE_ERROR_SHORTUTF8:
|
||||
return _("short utf8");
|
||||
case PCRE_ERROR_RECURSELOOP:
|
||||
return _("recursion loop");
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user