summaryrefslogtreecommitdiff
path: root/plugins/ropgadgets/helper.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/ropgadgets/helper.c')
-rw-r--r--plugins/ropgadgets/helper.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/plugins/ropgadgets/helper.c b/plugins/ropgadgets/helper.c
index ff89e85..c10af6d 100644
--- a/plugins/ropgadgets/helper.c
+++ b/plugins/ropgadgets/helper.c
@@ -29,6 +29,7 @@
#include <i18n.h>
+#include <common/cpp.h>
@@ -101,9 +102,11 @@ const phys_t *setup_instruction_sizes_by_default(size_t *count)
{
const phys_t *result; /* Liste de taille à renvoyer */
- result = (phys_t []){ 1 };
+ static const phys_t sizes[] = { 1 };
- *count = 1;
+ result = sizes;
+
+ *count = ARRAY_SIZE(sizes);;
return result;