diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2021-05-31 10:32:48 -0700 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2021-05-31 10:32:48 -0700 |
| commit | 0443fbb06387138fc88be80104bef102246fdd25 (patch) | |
| tree | 05259bcf5da0ad76aa62753c69b105ccc64d2370 /match.c | |
| parent | aa1faea83ccb60ae5c1918849dd62e377b7c7263 (diff) | |
Added warning flag for null derefs
Diffstat (limited to 'match.c')
| -rw-r--r-- | match.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -52,9 +52,10 @@ static match_t *match(def_t *defs, file_t *f, const char *str, pat_t *pat, bool // If the given pattern is a reference, look it up and return the referenced // pattern. This is used for an optimization to avoid repeated lookups. // +__attribute__((nonnull, returns_nonnull)) static inline pat_t *deref(def_t *defs, pat_t *pat) { - if (pat && pat->type == BP_REF) { + if (pat->type == BP_REF) { def_t *def = lookup(defs, pat->args.ref.len, pat->args.ref.name); if (def) pat = def->pat; } |
