This is an automated email from the ASF dual-hosted git repository.

bcall pushed a commit to branch 8.1.x
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/8.1.x by this push:
     new 3a350a4  Free TSMgmtString after using it.
3a350a4 is described below

commit 3a350a4969f2f42c12360d3b05b970894fd0ce84
Author: David Calavera <david.calav...@gmail.com>
AuthorDate: Tue Feb 4 13:23:50 2020 -0800

    Free TSMgmtString after using it.
    
    Fixes memory leak.
    
    Signed-off-by: David Calavera <david.calav...@gmail.com>
    (cherry picked from commit 544d29bde833a5cad673bb3ccf344f3da8bec387)
---
 plugins/compress/misc.cc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/plugins/compress/misc.cc b/plugins/compress/misc.cc
index 8c4b3bb..6335c80 100644
--- a/plugins/compress/misc.cc
+++ b/plugins/compress/misc.cc
@@ -142,6 +142,7 @@ init_hidden_header_name()
     hidden_header_name                         = (char 
*)TSmalloc(hidden_header_name_len + 1);
     hidden_header_name[hidden_header_name_len] = 0;
     sprintf(hidden_header_name, "x-accept-encoding-%s", result);
+    TSfree(result);
   }
   return hidden_header_name;
 }

Reply via email to