| 2245 | |
| 2246 | #if defined(__clang__) || defined (__GNUC__) |
| 2247 | __attribute__((no_sanitize_address)) |
| 2248 | #endif |
| 2249 | void fxPatternParserCheckStack(txPatternParser* parser) |
| 2250 | { |
| 2251 | char x; |
| 2252 | char *stack = &x; |
| 2253 | if (stack <= parser->stackLimit) |
| 2254 | fxPatternParserError(parser, gxErrors[mxNativeStackOverflow]); |
| 2255 | } |
| 2256 | |
| 2257 | void* fxPatternParserCreateChunk(txPatternParser* parser, txSize size) |
| 2258 | { |
no test coverage detected