aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-icmpv6.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2009-04-14 18:31:02 +0000
committerBill Meier <wmeier@newsguy.com>2009-04-14 18:31:02 +0000
commit871c9c715249df434c78ade9ab2c2455048e5567 (patch)
tree0d2073fa711550869135bdd135159a37630b865f /epan/dissectors/packet-icmpv6.c
parent14980f15921c20d581b39cc3c237e94a22bfce64 (diff)
ep_strbuf usage: ep_strbuf_new_label("") --> ep_strbuf_new_label(NULL);
ep_strbuf_append() --> ep_strbuf_append_c() in a few cases. svn path=/trunk/; revision=28052
Diffstat (limited to 'epan/dissectors/packet-icmpv6.c')
-rw-r--r--epan/dissectors/packet-icmpv6.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-icmpv6.c b/epan/dissectors/packet-icmpv6.c
index c6571e8708..547d2fae69 100644
--- a/epan/dissectors/packet-icmpv6.c
+++ b/epan/dissectors/packet-icmpv6.c
@@ -924,7 +924,7 @@ bitrange(tvbuff_t *tvb, int offset, int l, int s)
emem_strbuf_t *strbuf;
int i;
- strbuf = ep_strbuf_new_label("");
+ strbuf = ep_strbuf_new_label(NULL);
for (i = 0; i < l; i++)
bitrange0(tvb_get_ntohl(tvb, offset + i * 4), s + i * 4, strbuf);