1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-26 21:06:38 +02:00

relay: free ws_deflate when http request is freed

This commit is contained in:
Sébastien Helleu
2024-02-03 11:30:35 +01:00
parent 052db75805
commit 820a3e8767
+2
View File
@@ -1322,6 +1322,8 @@ relay_http_request_free (struct t_relay_http_request *request)
weechat_hashtable_free (request->headers);
if (request->accept_encoding)
weechat_hashtable_free (request->accept_encoding);
if (request->ws_deflate)
relay_websocket_deflate_free (request->ws_deflate);
if (request->body)
free (request->body);