Procházet zdrojové kódy

PCRE - add error handling

master
Arun Prakash Jana před 5 roky
rodič
revize
e2d37632ea
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: A75979F35C080412
1 změnil soubory, kde provedl 6 přidání a 2 odebrání
  1. +6
    -2
      src/nnn.c

+ 6
- 2
src/nnn.c Zobrazit soubor

@@ -1884,8 +1884,12 @@ static int regflags = REG_NOSUB | REG_EXTENDED | REG_ICASE;
#ifdef PCRE
static int setfilter(pcre **pcrex, const char *filter)
{
*pcrex = pcre_compile(filter, pcreflags, NULL, NULL, NULL);
return *pcrex ? 0 : -1;
const char *errstr = NULL;
int erroffset = 0;

*pcrex = pcre_compile(filter, pcreflags, &errstr, &erroffset, tables);

return errstr ? -1 : 0;
}
#else
static int setfilter(regex_t *regex, const char *filter)


Načítá se…
Zrušit
Uložit