summaryrefslogtreecommitdiff
path: root/web/web_match.c
diff options
context:
space:
mode:
authorDavid Vazgenovich Shakaryan <dvshakaryan@gmail.com>2022-06-02 02:43:58 -0700
committerDavid Vazgenovich Shakaryan <dvshakaryan@gmail.com>2022-06-02 02:43:58 -0700
commit823b81363a1145de4b8660153007b11faf4e2c56 (patch)
tree09d9c70e232c1b98ec8447cae6b6618bcd91497d /web/web_match.c
parent1db534799ef5b41114d80fce0c38f1c93235a8a3 (diff)
downloaddartboat-823b81363a1145de4b8660153007b11faf4e2c56.tar.gz
dartboat-823b81363a1145de4b8660153007b11faf4e2c56.tar.xz
web: fix minor mem leaks and bugs
Diffstat (limited to 'web/web_match.c')
-rw-r--r--web/web_match.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/web_match.c b/web/web_match.c
index 93ebf76..6e6f79d 100644
--- a/web/web_match.c
+++ b/web/web_match.c
@@ -22,7 +22,7 @@ void match_new()
void free_state()
{
- free(state->m);
+ match_free(state->m);
free(state);
state = NULL;
}