aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorRichard Sharpe <sharpe@ns.aus.com>2005-11-22 06:36:06 +0000
committerRichard Sharpe <sharpe@ns.aus.com>2005-11-22 06:36:06 +0000
commit5d58e1932331dbeef27c2ef79acbf46fbc28fc9f (patch)
tree9c38dd8be0a447ff5b4f5c03da6a4e38e1a17881 /epan
parentca0774dd9e61f1ce4a57edaf183da90283061c7b (diff)
Remove unnecessary code to add NULLs to strings obtained with ASN1_STRING_VALUE_DECODE, as they are already there.
svn path=/trunk/; revision=16560
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-ldap.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/epan/dissectors/packet-ldap.c b/epan/dissectors/packet-ldap.c
index b1ba64aceb..49777ba778 100644
--- a/epan/dissectors/packet-ldap.c
+++ b/epan/dissectors/packet-ldap.c
@@ -845,9 +845,6 @@ static int parse_filter_extensibleMatch(ASN1_SCK *a, char **filter, guint *filte
if (ret != ASN1_ERR_NOERROR) {
return ret;
}
- /* NULL Terminate that string */
- matchingRule = g_realloc(matchingRule, string_length + 1);
- matchingRule[string_length] = '\0';
break;
case 0x02: /* Parse attributeDescription */
@@ -855,8 +852,6 @@ static int parse_filter_extensibleMatch(ASN1_SCK *a, char **filter, guint *filte
if (ret != ASN1_ERR_NOERROR) {
return ret;
}
- type = g_realloc(type, string_length + 1);
- type[string_length] = '\0';
break;
case 0x03: /* Parse the matchValue */
@@ -864,8 +859,6 @@ static int parse_filter_extensibleMatch(ASN1_SCK *a, char **filter, guint *filte
if (ret != ASN1_ERR_NOERROR) {
return ret;
}
- matchValue = g_realloc(matchValue, string_length);
- matchValue[string_length] = '\0';
break;
case 0x04: /* Parse dnAttributes boolean */