<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<style type="text/css" style="display:none;"> P {margin-top:0;margin-bottom:0;} </style>
</head>
<body dir="ltr">
<div style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);" class="elementToProof">
Recheck-request: rebase=main, iol-sample-apps-testing, iol-compile-amd64-testing</div>
<div id="appendonsend"></div>
<hr style="display:inline-block;width:98%" tabindex="-1">
<div id="divRplyFwdMsg" dir="ltr"><font face="Calibri, sans-serif" style="font-size:11pt" color="#000000"><b>From:</b> Sameer Vaze <svaze@qti.qualcomm.com><br>
<b>Sent:</b> Friday, October 24, 2025 12:47 PM<br>
<b>To:</b> Sunila Sahu <ssahu@marvell.com>; Fan Zhang <fanzhang.oss@gmail.com>; Ashish Gupta <ashishg@marvell.com><br>
<b>Cc:</b> dev@dpdk.org <dev@dpdk.org>; Sameer Vaze <svaze@qti.qualcomm.com><br>
<b>Subject:</b> [PATCH] compressdev: fix coverity issue</font>
<div> </div>
</div>
<div class="BodyFragment"><font size="2"><span style="font-size:11pt;">
<div class="PlainText">Adds missing free before end of function<br>
<br>
Signed-off-by: Sameer Vaze <svaze@qti.qualcomm.com><br>
---<br>
drivers/compress/zlib/zlib_pmd.c | 1 +<br>
1 file changed, 1 insertion(+)<br>
<br>
diff --git a/drivers/compress/zlib/zlib_pmd.c b/drivers/compress/zlib/zlib_pmd.c<br>
index 3a2485b54e..1d7651dd7d 100644<br>
--- a/drivers/compress/zlib/zlib_pmd.c<br>
+++ b/drivers/compress/zlib/zlib_pmd.c<br>
@@ -126,6 +126,7 @@ process_zlib_inflate_chksum(struct rte_comp_op *op,<br>
free(dictionary);<br>
return;<br>
}<br>
+ free(dictionary);<br>
}<br>
<br>
static void<br>
-- <br>
2.31.1<br>
<br>
</div>
</span></font></div>
</body>
</html>