diff options
Diffstat (limited to 'thirdparty/pcre2/src/pcre2_maketables.c')
| -rw-r--r-- | thirdparty/pcre2/src/pcre2_maketables.c | 11 | 
1 files changed, 11 insertions, 0 deletions
diff --git a/thirdparty/pcre2/src/pcre2_maketables.c b/thirdparty/pcre2/src/pcre2_maketables.c index 5921e90793..8c93b4b573 100644 --- a/thirdparty/pcre2/src/pcre2_maketables.c +++ b/thirdparty/pcre2/src/pcre2_maketables.c @@ -147,4 +147,15 @@ for (i = 0; i < 256; i++)  return yield;  } +#ifndef DFTABLES +PCRE2_EXP_DEFN void PCRE2_CALL_CONVENTION +pcre2_maketables_free(pcre2_general_context *gcontext, const uint8_t *tables) +{ +  if (gcontext) +    gcontext->memctl.free((void *)tables, gcontext->memctl.memory_data); +  else +    free((void *)tables); +} +#endif +  /* End of pcre2_maketables.c */  |