aboutsummaryrefslogtreecommitdiffstats
path: root/epan/tvbuff.c
diff options
context:
space:
mode:
authorMartin Kaiser <wireshark@kaiser.cx>2014-01-20 21:56:38 +0000
committerMartin Kaiser <wireshark@kaiser.cx>2014-01-20 21:56:38 +0000
commit26701ed0f7f1d12a0535e287ee9ac299898ea64e (patch)
treea2d55ae2403c5613d2a423757b2c5c7eae42c2a0 /epan/tvbuff.c
parent933e95c8eca8891dcb5c83e3ffa78eb2a3138ec0 (diff)
remove todo comments
svn path=/trunk/; revision=54865
Diffstat (limited to 'epan/tvbuff.c')
-rw-r--r--epan/tvbuff.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/epan/tvbuff.c b/epan/tvbuff.c
index 4b2c53fd3a..dc8e721b67 100644
--- a/epan/tvbuff.c
+++ b/epan/tvbuff.c
@@ -2374,9 +2374,6 @@ tvb_get_string_enc(wmem_allocator_t *scope, tvbuff_t *tvb, const gint offset,
* was a gboolean for the byte order, not an
* encoding value, and passed non-zero values
* other than TRUE to mean "little-endian".
- *
- * XXX - should map all octets with the 8th bit
- * set REPLACEMENT CHARACTERs.
*/
strbuf = tvb_get_string(scope, tvb, offset, length);
break;
@@ -2387,8 +2384,6 @@ tvb_get_string_enc(wmem_allocator_t *scope, tvbuff_t *tvb, const gint offset,
* points to a "substitute" UTF-8 character?
* XXX - should map code points > 10FFFF to REPLACEMENT
* CHARACTERs.
- * XXX - should map invalid UTF-8 sequences to
- * REPLACEMENT CHARACTERs.
*/
strbuf = tvb_get_string(scope, tvb, offset, length);
break;