aboutsummaryrefslogtreecommitdiffstats
path: root/epan/charsets.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/charsets.c')
-rw-r--r--epan/charsets.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/charsets.c b/epan/charsets.c
index a49cb127ae..dc74e80360 100644
--- a/epan/charsets.c
+++ b/epan/charsets.c
@@ -1149,7 +1149,7 @@ get_ts_23_038_7bits_string_unpacked(wmem_allocator_t *scope, const guint8 *ptr,
strbuf = wmem_strbuf_sized_new(scope, length+1, 0);
for (i = 0; i < length; i++)
- saw_escape = handle_ts_23_038_char(strbuf, *ptr, saw_escape);
+ saw_escape = handle_ts_23_038_char(strbuf, *ptr++, saw_escape);
return (guint8 *)wmem_strbuf_finalize(strbuf);
}