aboutsummaryrefslogtreecommitdiffstats
path: root/epan/tvbuff_lz77.c
diff options
context:
space:
mode:
authorAurelien Aptel <aaptel@suse.com>2019-07-17 13:49:18 +0200
committerGuy Harris <guy@alum.mit.edu>2019-07-17 14:18:41 +0000
commitf735f916a9797838c497d2c2b535f2518f8187db (patch)
treec46701bbca2fc5e56ab91f088c78ceff93677f1d /epan/tvbuff_lz77.c
parent3e26533c08c3d43ac255769ee1098db735896847 (diff)
tvbuff_lz*: fix typo in comment
Change-Id: Id2b36454e678151ea5948f8e068ef400dd562188 Reviewed-on: https://code.wireshark.org/review/33985 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Guy Harris <guy@alum.mit.edu>
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);