diff options
| author | Garrett D'Amore <garrett@damore.org> | 2022-12-31 13:55:11 -0800 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2022-12-31 13:55:11 -0800 |
| commit | 539e559e65cd8f227c45e4b046ac41c0edcf6c32 (patch) | |
| tree | 36eb234d9511bdcc0edf29a4a1a31b427be929fb /tests/scalability.c | |
| parent | f26ddeb81a5ea9d316444951f54a2a017db70482 (diff) | |
| download | nng-539e559e65cd8f227c45e4b046ac41c0edcf6c32.tar.gz nng-539e559e65cd8f227c45e4b046ac41c0edcf6c32.tar.bz2 nng-539e559e65cd8f227c45e4b046ac41c0edcf6c32.zip | |
Fixes for some security complaints.
None of these changes are actual security bugs, but GitHub's
scanner reports false positives at Critical severity for them.
(There are a number of complaints from that scanner, many of
which we do not necessarily agree with.)
Diffstat (limited to 'tests/scalability.c')
| -rw-r--r-- | tests/scalability.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/scalability.c b/tests/scalability.c index 17d6ce70..c794a4ee 100644 --- a/tests/scalability.c +++ b/tests/scalability.c @@ -67,7 +67,7 @@ int transact(nng_socket *clients, int num) { nng_msg *msg; - int rv; + int rv = 0; int i; for (i = 0; i < num; i++) { |
