diff options
author | Anders Broman <anders.broman@ericsson.com> | 2009-05-13 19:46:11 +0000 |
---|---|---|
committer | Anders Broman <anders.broman@ericsson.com> | 2009-05-13 19:46:11 +0000 |
commit | c91a384702e6d17254918e2291d28bfd2deddbdd (patch) | |
tree | e3d1280ddcbb3ea542ab9588b0e888da296a8cfe /epan/dissectors/packet-uts.c | |
parent | fbd05f0fce6a10a1f3059c40628962bc056e10ef (diff) | |
download | wireshark-c91a384702e6d17254918e2291d28bfd2deddbdd.tar.gz wireshark-c91a384702e6d17254918e2291d28bfd2deddbdd.tar.bz2 wireshark-c91a384702e6d17254918e2291d28bfd2deddbdd.zip |
Apply some of the patches from:
http://wiki.wireshark.org/Development/Optimization
svn path=/trunk/; revision=28356
Diffstat (limited to 'epan/dissectors/packet-uts.c')
-rw-r--r-- | epan/dissectors/packet-uts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-uts.c b/epan/dissectors/packet-uts.c index 29b2b3476a..c71b91c66c 100644 --- a/epan/dissectors/packet-uts.c +++ b/epan/dissectors/packet-uts.c @@ -113,7 +113,7 @@ dissect_uts(tvbuff_t *tvb, packet_info *pinfo _U_ , proto_tree *tree) proto_tree *uts_trailer_tree = NULL; proto_item *ti; int length; - gchar rid, sid, did; + gchar rid = 0, sid = 0, did = 0; gchar *msg_msg; int offset = 0; int header_length = -1; |