aboutsummaryrefslogtreecommitdiffstats
path: root/epan/tvbuff_lz77.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/tvbuff_lz77.c')
-rw-r--r--epan/tvbuff_lz77.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/tvbuff_lz77.c b/epan/tvbuff_lz77.c
index 082e58a133..e5dc3e1954 100644
--- a/epan/tvbuff_lz77.c
+++ b/epan/tvbuff_lz77.c
@@ -113,9 +113,9 @@ tvb_uncompress_lz77(tvbuff_t *tvb, const int offset, int in_size)
if (ok) {
/*
* Cannot pass a tvb free callback that frees the wmem
- * pool, so we make an make an extra copy that uses
- * bare pointers. This could be optimized if tvb API
- * had a free pool callback of some sort.
+ * pool, so we make an extra copy that uses bare
+ * pointers. This could be optimized if tvb API had a
+ * free pool callback of some sort.
*/
guint size = wmem_array_get_count(obuf);
guint8 *p = (guint8 *)g_malloc(size);