aboutsummaryrefslogtreecommitdiff
path: root/vm.c
diff options
context:
space:
mode:
Diffstat (limited to 'vm.c')
-rw-r--r--vm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm.c b/vm.c
index 2fb78be..530cd09 100644
--- a/vm.c
+++ b/vm.c
@@ -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;