nl: fix crash on invalid regex

This commit is contained in:
Hiltjo Posthuma 2014-11-16 15:17:24 +01:00 committed by sin
parent ce90cc57d4
commit 3fb0e50668
1 changed files with 1 additions and 1 deletions

2
nl.c
View File

@ -33,7 +33,7 @@ main(int argc, char *argv[])
r = EARGF(usage());
mode = r[0];
if (r[0] == 'p') {
regcomp(&preg, &r[1], REG_NOSUB);
eregcomp(&preg, &r[1], REG_NOSUB);
} else if (!strchr("ant", mode)) {
usage();
}