aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-x411.c
diff options
context:
space:
mode:
authorLuis Ontanon <luis.ontanon@gmail.com>2007-08-25 14:48:48 +0000
committerLuis Ontanon <luis.ontanon@gmail.com>2007-08-25 14:48:48 +0000
commitbecf83594b3d3114f9426c78174306ad8d39d8b4 (patch)
treed1faf78ae365c9f8a5e422b2b2078e8bb9095150 /epan/dissectors/packet-x411.c
parent7c174c63f827576c33ca258b267987d5ad950248 (diff)
there's nothing like a MAX_OID_STR_LEN... get rid of a potential stack BO
svn path=/trunk/; revision=22657
Diffstat (limited to 'epan/dissectors/packet-x411.c')
-rw-r--r--epan/dissectors/packet-x411.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-x411.c b/epan/dissectors/packet-x411.c
index c1b4209286..ab6c2b7ab5 100644
--- a/epan/dissectors/packet-x411.c
+++ b/epan/dissectors/packet-x411.c
@@ -7803,9 +7803,9 @@ static int
call_x411_oid_callback(char *base_oid, tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
{
const char *name = NULL;
- char extension_oid[MAX_OID_STR_LEN];
+ char* extension_oid;
- sprintf(extension_oid, "%s.%d", base_oid, extension_id);
+ extension_oid = ep_strdup_printf("%s.%d", base_oid, extension_id);
name = get_oid_str_name(extension_oid);
proto_item_append_text(tree, " (%s)", name ? name : extension_oid);