diff options
Diffstat (limited to 'vm.c')
| -rw-r--r-- | vm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -45,7 +45,7 @@ const char *opcode_name(enum VMOpcode o) */ void destroy_match(match_t **m) { - if (!m || !*m) return; + if (!*m) return; destroy_match(&((*m)->child)); destroy_match(&((*m)->nextsibling)); *m = NULL; |
