summaryrefslogtreecommitdiff
path: root/src/HTTP_Analyze.c
diff options
context:
space:
mode:
author刘学利 <[email protected]>2024-03-07 05:30:32 +0000
committer刘学利 <[email protected]>2024-03-07 05:30:32 +0000
commit0571d0bc63c240d4c0adccaa40869a76cfe6013b (patch)
tree86cd91365b5b3fa7a7512ea8282c4d41b566d2ab /src/HTTP_Analyze.c
parentb8f494c571d412e748d7cb832ae7e94c41ac8b5b (diff)
OMPUB-1170: Bugfix memory leakv2.0.20
Diffstat (limited to 'src/HTTP_Analyze.c')
-rw-r--r--src/HTTP_Analyze.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/HTTP_Analyze.c b/src/HTTP_Analyze.c
index 3be9c8d..af07f72 100644
--- a/src/HTTP_Analyze.c
+++ b/src/HTTP_Analyze.c
@@ -688,13 +688,6 @@ void http_releaseHttpLinkNode(http_stream *a_http_stream,struct streaminfo *a_tc
dictator_free(thread_seq, cur_node->parser.batch_infor);
}
}
-
- if(cur_node->last_unzip_content.buf!=NULL)
- {
- dictator_free(thread_seq, cur_node->last_unzip_content.buf);
- cur_node->last_unzip_content.buf = NULL;
- cur_node->last_unzip_content.buflen = 0;
- }
if(cur_node->ungzip_handle!=NULL)
{
@@ -1140,7 +1133,7 @@ uchar http_analyseHttpConnection(http_stream* a_http_stream,struct streaminfo *a
#endif
*/
- //��Ϣ�����
+ //��Ϣ�����?
/*set mgs_status because cur_http_node maybe release*/
uchar mgs_status = HTTP_RETURN_GIVEME;
rec = http_findAndDoWithEntity(&mgs_status, cur_http_node, a_http_stream, a_tcp, thread_seq, a_packet);