aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-sip.c
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2011-11-10 20:38:07 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2011-11-10 20:38:07 +0000
commit7cc6fec6d9a51040a1e021084b89cdb1f6cb282b (patch)
tree71383f3e934200b0e9ca1f542ed8253af4a3f5ef /epan/dissectors/packet-sip.c
parent9c3c4ceedffb4d38b6e2fd08d331861aa9a5a15b (diff)
packet-sip.c:1442: warning: 'c' may be used uninitialized in this function
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39783 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-sip.c')
-rw-r--r--epan/dissectors/packet-sip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-sip.c b/epan/dissectors/packet-sip.c
index ee634d4c4e..177c4b27df 100644
--- a/epan/dissectors/packet-sip.c
+++ b/epan/dissectors/packet-sip.c
@@ -1439,7 +1439,7 @@ dissect_sip_authorization_item(tvbuff_t *tvb, proto_tree *tree, gint start_offse
gchar *name;
header_parameter_t *auth_parameter;
guint i = 0;
- gchar c;
+ gchar c = '\0';
/* skip Spaces and Tabs */
start_offset = tvb_skip_wsp(tvb, start_offset, line_end_offset - start_offset);