summaryrefslogtreecommitdiff
path: root/src/argparse.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/argparse.c')
-rw-r--r--src/argparse.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/argparse.c b/src/argparse.c
index 00ba82a..223d267 100644
--- a/src/argparse.c
+++ b/src/argparse.c
@@ -370,7 +370,7 @@ initialize (gpgrt_argparse_t *arg, gpgrt_opt_t *opts, estream_t fp)
seen_dump_option_table = 1;
}
}
- i += 4; /* The number of the above internal options. */
+ i += 5; /* The number of the above internal options. */
i++; /* End of list marker. */
arg->internal->opts = xtrycalloc (i, sizeof *arg->internal->opts);
if (!arg->internal->opts)
@@ -432,6 +432,8 @@ initialize (gpgrt_argparse_t *arg, gpgrt_opt_t *opts, estream_t fp)
arg->internal->opts[i].ordinal = i;
i++;
}
+ /* Take care: When adding new options remember to increase the
+ * size of the array. */
arg->internal->opts[i].short_opt = 0;