summaryrefslogtreecommitdiff
path: root/plugins/elf/format.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/elf/format.c')
-rw-r--r--plugins/elf/format.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/elf/format.c b/plugins/elf/format.c
index 8c0f0fc..d41ba00 100644
--- a/plugins/elf/format.c
+++ b/plugins/elf/format.c
@@ -666,9 +666,9 @@ static void g_elf_format_refine_portions(GElfFormat *format)
else name = NULL;
if (name != NULL)
- sprintf(desc, "%s \"%s\"", _("Section"), name);
+ snprintf(desc, MAX_PORTION_DESC, "%s \"%s\"", _("Section"), name);
else
- sprintf(desc, "%s ???", _("Section"));
+ snprintf(desc, MAX_PORTION_DESC, "%s ???", _("Section"));
g_binary_portion_set_desc(new, desc);