extmod/modure: Add stack overflow checking when executing a regex.
This commit is contained in:
parent
c9a0b2a818
commit
aba1f9167a
|
@ -32,9 +32,12 @@
|
|||
#include "py/runtime.h"
|
||||
#include "py/binary.h"
|
||||
#include "py/objstr.h"
|
||||
#include "py/stackctrl.h"
|
||||
|
||||
#if MICROPY_PY_URE
|
||||
|
||||
#define re1_5_stack_chk() MP_STACK_CHECK()
|
||||
|
||||
#include "re1.5/re1.5.h"
|
||||
|
||||
#define FLAG_DEBUG 0x1000
|
||||
|
|
Loading…
Reference in New Issue