aboutsummaryrefslogtreecommitdiffstats
path: root/re.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2013-09-08 12:46:20 +0200
committerArnold D. Robbins <arnold@skeeve.com>2013-09-08 12:46:20 +0200
commitc3e4d0cf3f1fd24164e0a58db23b86b56c6dc7c8 (patch)
tree047d8f1a255b377026cdb8717a22d253401e3540 /re.c
parent0b8ef2cbc3e72b40046cd07f56e1cffb27690827 (diff)
downloadegawk-c3e4d0cf3f1fd24164e0a58db23b86b56c6dc7c8.tar.gz
egawk-c3e4d0cf3f1fd24164e0a58db23b86b56c6dc7c8.tar.bz2
egawk-c3e4d0cf3f1fd24164e0a58db23b86b56c6dc7c8.zip
Fixes based on problems from a static checker.
Diffstat (limited to 're.c')
-rw-r--r--re.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/re.c b/re.c
index e427a8fe..b9db6556 100644
--- a/re.c
+++ b/re.c
@@ -259,7 +259,7 @@ research(Regexp *rp, char *str, int start,
size_t len, int flags)
{
const char *ret = str;
- int try_backref;
+ int try_backref = false;
int need_start;
int no_bol;
int res;