diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-02-09 16:23:21 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-02-09 16:23:21 +0000 |
commit | 266d5669d85db26f74fdd6483f114fe20f1bbb7e (patch) | |
tree | 4b020a1f97bebaf1bbd7800a2882315eeca54a7f /test/rspamd_http_test.c | |
parent | c4e4a60be8bde947c7a93841fc90a9e31ebc6f1e (diff) | |
download | rspamd-266d5669d85db26f74fdd6483f114fe20f1bbb7e.tar.gz rspamd-266d5669d85db26f74fdd6483f114fe20f1bbb7e.zip |
Fix memory leaks in HTTP code.
Diffstat (limited to 'test/rspamd_http_test.c')
-rw-r--r-- | test/rspamd_http_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/rspamd_http_test.c b/test/rspamd_http_test.c index cdcfef967..77b71cee6 100644 --- a/test/rspamd_http_test.c +++ b/test/rspamd_http_test.c @@ -264,5 +264,5 @@ rspamd_http_test_func (void) close (fd); unlink (filepath); - kill (sfd, SIGKILL); + kill (sfd, SIGTERM); } |