summaryrefslogtreecommitdiff
path: root/nDPId-test.c
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2023-10-05 12:33:13 +0200
committerToni Uhlig <matzeton@googlemail.com>2023-10-05 17:26:06 +0200
commitdfd044930689aa6d2af94d15d1372923c5302ffb (patch)
tree7ad9cc59c2d54c76c6b08d813f93d7730f0b45e7 /nDPId-test.c
parent07f2c2d9cc7e29b53de42c3849bc3c2e6b6b8fb9 (diff)
Fix issues detected by SonarCloud.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'nDPId-test.c')
-rw-r--r--nDPId-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nDPId-test.c b/nDPId-test.c
index 11cd81bc8..19f93be4a 100644
--- a/nDPId-test.c
+++ b/nDPId-test.c
@@ -1454,7 +1454,7 @@ static int base64_selftest()
"0hr4QS1hduMHTwKBXqjb4CGVJbxoc+S/7hjTHGDqWhHCpq9+4SQxcR6MVp65BVNMdGJRLMiHAkUWvivJW4DOanO//"
"36RFuMQEAQEAUMabZOvBbAa1KSTcWbL5ZGc/YPxLofmSTDMxf+KmqSukiR3yVasPbv5J6Hx2zCATM9pR9VRArg==";
- size_t encoded_len = strlen(encoded_buf);
+ size_t encoded_len = strnlen(encoded_buf, sizeof(encoded_buf));
unsigned char decoded_buf[nDPId_PACKETS_PLEN_MAX];
size_t decoded_len = sizeof(decoded_buf);
if (nDPIsrvd_base64decode(encoded_buf, encoded_len, decoded_buf, &decoded_len) != 0)