* rstacktoodeep - check for stack getting dangerously deep * * Return nonzero to fail the operation with error code REG_ETOOBIG, * zero to keep going * * The current implementation is Postgres-specific. If we ever get around * to splitting the regex code out as a standalone library, there will need * to be some API to let applications define a callback function for this. */
| 2413 | * to be some API to let applications define a callback function for this. |
| 2414 | */ |
| 2415 | static int |
| 2416 | rstacktoodeep(void) |
| 2417 | { |
| 2418 | return stack_is_too_deep(); |
| 2419 | } |
| 2420 | |
| 2421 | #ifdef REG_DEBUG |
| 2422 |
nothing calls this directly
no test coverage detected