summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-ansi_map.c
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2013-12-18 15:54:32 +0000
committerEvan Huus <eapache@gmail.com>2013-12-18 15:54:32 +0000
commit8f665d9b36a7b7b3ae30b9e7afbc7724957e0bc1 (patch)
tree93ea8124c60b6c5e55a1cec422eda62557642cef /epan/dissectors/packet-ansi_map.c
parent197c2ffac6913dd3953409bef42af54cfb1f3dfe (diff)
downloadwireshark-8f665d9b36a7b7b3ae30b9e7afbc7724957e0bc1.tar.gz
Add a sixteenth element to all BCD digit sets to avoid garbage values when
decoding corrupt bytes. Some of these digit sets could probably be deduplicated... svn path=/trunk/; revision=54224
Diffstat (limited to 'epan/dissectors/packet-ansi_map.c')
-rw-r--r--epan/dissectors/packet-ansi_map.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ansi_map.c b/epan/dissectors/packet-ansi_map.c
index 1d7e9a7991..4335370738 100644
--- a/epan/dissectors/packet-ansi_map.c
+++ b/epan/dissectors/packet-ansi_map.c
@@ -1356,7 +1356,7 @@ static int dissect_ansi_map_SystemMyTypeCode(gboolean implicit_tag _U_, tvbuff_t
static dgt_set_t Dgt_tbcd = {
{
/* 0 1 2 3 4 5 6 7 8 9 a b c d e */
- '0','1','2','3','4','5','6','7','8','9','?','B','C','*','#'
+ '0','1','2','3','4','5','6','7','8','9','?','B','C','*','#','?'
}
};