aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-smb.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2011-03-27 14:11:40 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2011-03-27 14:11:40 +0000
commite43c9a35e4b7cb2ab6b85102efad48ae295baa8b (patch)
treecc0c9737c03bf19b7f09eae17031cf64c15e4fca /epan/dissectors/packet-smb.c
parent129f07a94987bfa56ec0c9614d5e6d2eb284bc17 (diff)
Added a FALLTHRU comment to avoid a "missing break" warning.
Coverity 472. svn path=/trunk/; revision=36366
Diffstat (limited to 'epan/dissectors/packet-smb.c')
-rw-r--r--epan/dissectors/packet-smb.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/dissectors/packet-smb.c b/epan/dissectors/packet-smb.c
index d37cb9c89f..7e00f9a13c 100644
--- a/epan/dissectors/packet-smb.c
+++ b/epan/dissectors/packet-smb.c
@@ -12790,7 +12790,8 @@ dissect_qpi_loi_vals(tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree,
&trunc);
break;
case 1022: /* SMB_FILE_STREAM_INFORMATION */
- si->unicode = TRUE;
+ si->unicode = TRUE;
+ /* FALLTHRU */
case 0x0109: /*Query File Stream Info*/
offset = dissect_qfi_SMB_FILE_STREAM_INFO(tvb, pinfo, tree, offset, bcp,
&trunc, si->unicode);