diff options
author | David Robillard <d@drobilla.net> | 2024-12-11 18:34:20 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-12-11 19:39:22 -0500 |
commit | 5dc6a712ef2cc383083220326354fc7aa960c798 (patch) | |
tree | de4fdfb1102436bd6f431a35df6e5189424551df /tools/lv2bench.c | |
parent | 45368fc65aebc892bff3ab4b3e844512af26b566 (diff) | |
download | lilv-5dc6a712ef2cc383083220326354fc7aa960c798.tar.gz lilv-5dc6a712ef2cc383083220326354fc7aa960c798.tar.bz2 lilv-5dc6a712ef2cc383083220326354fc7aa960c798.zip |
Avoid use of atoi()
Diffstat (limited to 'tools/lv2bench.c')
-rw-r--r-- | tools/lv2bench.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/tools/lv2bench.c b/tools/lv2bench.c index b19d376..fab7ec2 100644 --- a/tools/lv2bench.c +++ b/tools/lv2bench.c @@ -214,9 +214,15 @@ main(int argc, char** argv) if (!strcmp(argv[a], "-f")) { full_output = true; } else if (!strcmp(argv[a], "-n") && (a + 1 < argc)) { - sample_count = atoi(argv[++a]); + const long l = strtol(argv[++a], NULL, 10); + if (l > 0 && l < (1L << 28L)) { + sample_count = (uint32_t)l; + } } else if (!strcmp(argv[a], "-b") && (a + 1 < argc)) { - block_size = atoi(argv[++a]); + const long l = strtol(argv[++a], NULL, 10); + if (l > 0 && l < 16384) { + block_size = (uint32_t)l; + } } else if (argv[a][0] != '-') { break; } else { |