summaryrefslogtreecommitdiff
path: root/asn1/ldap/ldap.cnf
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2012-03-02 11:00:24 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2012-03-02 11:00:24 +0000
commit8e968adb2c00a3e22fef0a17ced2d27a1231bb99 (patch)
treea34aedaa96545372ef04a38f19db838d73c6fba6 /asn1/ldap/ldap.cnf
parent8cc44ff4f0dfdf2150a03bfca38b7cefc1746d9b (diff)
downloadwireshark-8e968adb2c00a3e22fef0a17ced2d27a1231bb99.tar.gz
Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang
svn path=/trunk/; revision=41298
Diffstat (limited to 'asn1/ldap/ldap.cnf')
-rw-r--r--asn1/ldap/ldap.cnf2
1 files changed, 1 insertions, 1 deletions
diff --git a/asn1/ldap/ldap.cnf b/asn1/ldap/ldap.cnf
index fce9fb7aa7..010c2dd5e0 100644
--- a/asn1/ldap/ldap.cnf
+++ b/asn1/ldap/ldap.cnf
@@ -785,7 +785,7 @@ offset = dissect_ber_boolean(implicit_tag, actx, tree, tvb, offset, hf_index, &v
int otheroffset = offset;
if(!implicit_tag){
- otheroffset=dissect_ber_identifier(actx->pinfo, tree, tvb, otheroffset, &ber_class, &pc, &tag);
+ dissect_ber_identifier(actx->pinfo, tree, tvb, otheroffset, &ber_class, &pc, &tag);
otheroffset=dissect_ber_length(actx->pinfo, tree, tvb, offset, &len, NULL);
} else {
gint32 remaining=tvb_length_remaining(tvb, offset);